Question

I've been trying to figure out for a while why my slider stops autoplaying when changing slides via the paging navigation.

I tried setting up a JSFiddle ( http://jsfiddle.net/9GuvL ) but it seems to not work at all there. So I have uploaded a preview for you: http://dperolio.rp-computers.co.uk/crusadegaming-help/

You can see it runs normally, unless you click one of the right slide tabs.

Thanks in advance.

Était-ce utile?

La solution

I suppose this is the normal behavior, cause when user clicks on the tab she usually wants that tab be visible permanently.

there is a pause() call in the definition of jump method (in the slideshow.js)

jump: function(index, control) {
    if ((Slideshow.lastSlide == index) || (Slideshow.slides.length <= 1)) return;
    Slideshow.pause();
    setTimeout(Slideshow.play, 5000) 

You can comment it if you really want that

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top