jquery循环不会暂停

发布于 2024-12-22 15:51:49 字数 376 浏览 1 评论 0原文

由于某种原因, Jquery Cycle 的暂停命令

$('#headerimgs').cycle('pause');

不会暂停图像转换,它应该根据 < a href="http://jquery.malsup.com/cycle/pause.html" rel="nofollow">此链接

可以在此处测试:http://jsfiddle.net/r7cUb/17/

有什么想法吗?

For some reason, the pause command for Jquery cycle

$('#headerimgs').cycle('pause');

would not pause the image transitions and it should acording to this link

Can be tested here: http://jsfiddle.net/r7cUb/17/

any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尘曦 2024-12-29 15:51:49

看来您正在使用 Cycle Light 插件,似乎它没有暂停功能,但如果我使用 Cycle (all) 插件,它就可以正常工作。

演示: http://jsfiddle.net/r7cUb/21/

使用这个脚本

<script src="http://malsup.github.com/jquery.cycle.all.js" type="text/javascript"></script>

代替

<script src="http://toniweb.us/gm/js/cycle.js" type="text/javascript"></script>

It seems you are using Cycle Light plugin, seems it doesn't have pause functionality, but it works fine if I use Cycle (all) plugin.

DEMO: http://jsfiddle.net/r7cUb/21/

Use this script

<script src="http://malsup.github.com/jquery.cycle.all.js" type="text/javascript"></script>

Instead of

<script src="http://toniweb.us/gm/js/cycle.js" type="text/javascript"></script>
没有伤那来痛 2024-12-29 15:51:49

使用它

来暂停

$('#pauseButton').click(function() { 
    $('#headerimgs').cycle('pause'); 
});

和恢复

$('#resumeButton').click(function() { 
    $('#headerimgs').cycle('resume'); 
});

use this

for pause

$('#pauseButton').click(function() { 
    $('#headerimgs').cycle('pause'); 
});

and for resume

$('#resumeButton').click(function() { 
    $('#headerimgs').cycle('resume'); 
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文