如何在 Easy Slider 1.7 中重新启动滑动动画
我有一个关于 jQuery Easy Slider 1.7 http 的问题://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider 带有数字导航。 当我使用滑块并将自动、连续设置为 true 时,当我单击数字时,自动滑动动画会停止。有没有办法让动画延迟一定的时间? 我尝试添加
timeout = setTimeout(function(){
animate("next",false);
},options.pause);
以
if(clicked) clearTimeout(timeout);
使其:
if(clicked) {clearTimeout(timeout);timeout = setTimeout(function()animate("next",false);},options.pause);}
但是在单击滑动停止后,当它重新启动时,它会简单地继续单个滑动运动(所有图像滑动),然后出现空白显示。一段时间后,图像正常显示,滑动再次从图像 1 开始并正常继续。
I've got a question about the jQuery Easy Slider 1.7 http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider with numeric navigation.
When i use the slider with auto, continous set to true, the automatic sliding animation stops when I click on a number. Is there a way to make the animation after certain time delay?
I tried adding
timeout = setTimeout(function(){
animate("next",false);
},options.pause);
to
if(clicked) clearTimeout(timeout);
making it:
if(clicked) {clearTimeout(timeout);timeout = setTimeout(function()animate("next",false);},options.pause);}
But then after the sliding stops on click, when it restarts it simple continues in a single sliding motion(all images slide), then come on a blank display. After some time the images comes normally and the sliding starts again from image 1 and continues normally.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论