jQuery Easy Slider Plugin - Restarting Animation
i`ve got a question about the jQuery Easy Slider 1.7 http://cssglobe.com/post/开发者_StackOverflow5780/easy-slider-17-numeric-navigation-jquery-slider with numeric navigation.
The problem is, that the automatic animation stops when I click onto a number. Is there a way to make the animation going further even after you clicked a number?
Thanks in advance, Thomas
Realize this is an old thread, but this is what I did to fix it...
Around line 160 change this:
default: t = dir; break;
to this:
default: t = parseInt(dir); break;
Around line 207 insert this:
if(options.numeric){;timeout = setTimeout(function(){animate("next",false);},diff*options.speed+options.pause);};
Worked for me!
精彩评论