如何在 Easy Slider 1.7 中重新启动滑动动画

发布于 2024-11-28 09:43:23 字数 727 浏览 0 评论 0原文

我有一个关于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文