Jquery Cycle 插件:如何在加载时暂停幻灯片放映
我想加载一个 Jquery Cycle 幻灯片,加载后暂停,直到用户单击“播放”按钮。我是 Jquery 新手,所以你能给我详细的解释和可能的示例代码吗?您可以看到我的幻灯片@ www.sessomsphotographics.com
谢谢
I I want to load a Jquery Cycle slideshow and after loading pause until the user clicks the Play button. I am new to Jquery so could you give me a detailed explanation and possibly example code. You can see my slideshow @ www.sessomsphotographics.com
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以将字符串
'pause'
发送到循环插件以暂停它,然后发送'resume'
以恢复它。You can send the string
'pause'
to the cycle plugin to pause it, and then send in'resume'
to resume it.您还可以设置循环选项,使其永远不会在自动前进模式下启动。下载 jquery.cycle.all.2.72.js(或某些变体)的副本并在其中搜索“$.fn.cycle.defaults = {”。将“超时”(第二个选项)设置为零。
You can also set the cycle options so that it never starts in auto-advance mode. Download a copy of jquery.cycle.all.2.72.js (or some variant) and do a search within for "$.fn.cycle.defaults = {". Set "timeout" (the second option) to zero.
效果很好,我最终使用了这个:
That works great, I ended up using this :
您可以在准备就绪时向其发送“暂停”消息:
You can send it the 'pause' message on ready: