Git Product home page Git Product logo

Comments (7)

ganlanyuan avatar ganlanyuan commented on July 30, 2024

Hi,
That's expected. Because when you can tns(...), it's initialized already. It will not fire again.
A work around for this is to watch the initial event before the initiation.

tns().events.on('initialized', function(info) {
  console.log(info.container.id);
});

var slider3 = tns({
  container: document.querySelector('.slider-feedback'),
  axis: 'vertical',
  speed: 1600,
  items: 3,
  slideBy: 1,
  autoplay: true,
  gutter: 20,
  controlsContainer: document.querySelector('.wj-tns-controls.controls-feedback'),
  navContainer: document.querySelector('.wj-tns-thumbnails'),
});

from tiny-slider.

WhereJuly avatar WhereJuly commented on July 30, 2024

Clear now. Thank you.
Another specific question. I have several tns sliders in my page. I attach the hadler for e.g. transitionEnd like this:

    slider3.events.on('transitionEnd', clearHiddenAttrib);

... and I assume the handler to be called on slider3 instance's transitionEnd event only.

However the event handler is called on all transitionEnd events emitted by all the instances of tns. What could be the right way of doing things with tns in this case? Like filter out the name of the required slider within the handler?
Thanks.

from tiny-slider.

ganlanyuan avatar ganlanyuan commented on July 30, 2024

Yes, I noticed this issue. Will looking on it shortly.
For now you can do with the method you mentioned (Like filter out the name of the required slider within the handler?)

slider3.events.on('transitionEnd', function(info) {
  if (info.container.id === 'base') {
    console.log(e.type, info.container.id);
  }
});

from tiny-slider.

ganlanyuan avatar ganlanyuan commented on July 30, 2024

Hey,
Just submit a new release to fix this issue.
The tns() instances no longer sharing the same event. Also you can now use onInit fallback instead of initialized event, more on here.
Please check it out and let me know if it works for you.

from tiny-slider.

ganlanyuan avatar ganlanyuan commented on July 30, 2024

Close for now.

from tiny-slider.

WhereJuly avatar WhereJuly commented on July 30, 2024

Hi William. I tested a little. These two changes work fine. Quite a convinient addition. Thanks a lot.

from tiny-slider.

ganlanyuan avatar ganlanyuan commented on July 30, 2024

Thanks for the feedback. Glad to see that.

from tiny-slider.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.