Jquery Cycle 插件:如何在加载时暂停幻灯片放映

发布于 2024-08-13 16:41:36 字数 135 浏览 3 评论 0原文

我想加载一个 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 技术交流群。

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

发布评论

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

评论(4

匿名的好友 2024-08-20 16:41:36

您可以将字符串'pause'发送到循环插件以暂停它,然后发送'resume'以恢复它。

// start cycle with default options
$('#rotator').cycle();

// immediately pause it
$('#rotator').cycle('pause');

// when the play button is clicked, resume
$('#play-button').click(function (event) {
    event.preventDefault();
    $('#rotator').cycle('resume');
});

You can send the string 'pause' to the cycle plugin to pause it, and then send in 'resume' to resume it.

// start cycle with default options
$('#rotator').cycle();

// immediately pause it
$('#rotator').cycle('pause');

// when the play button is clicked, resume
$('#play-button').click(function (event) {
    event.preventDefault();
    $('#rotator').cycle('resume');
});
债姬 2024-08-20 16:41:36

您还可以设置循环选项,使其永远不会在自动前进模式下启动。下载 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.

绅刃 2024-08-20 16:41:36

效果很好,我最终使用了这个:

// Cycle
$('ul#div_cycle').cycle({
    next:    '#next',
    prev:    '#prev', 
    fx:     'scrollHorz', 
    timeout: 2000, 
    delay:  -3500,
    pause: 1
});

// Pause cycle
$('ul#div_cycle').cycle('pause');

That works great, I ended up using this :

// Cycle
$('ul#div_cycle').cycle({
    next:    '#next',
    prev:    '#prev', 
    fx:     'scrollHorz', 
    timeout: 2000, 
    delay:  -3500,
    pause: 1
});

// Pause cycle
$('ul#div_cycle').cycle('pause');
残月升风 2024-08-20 16:41:36

您可以在准备就绪时向其发送“暂停”消息:

$(document).ready(function() {                     
    $('.slideshow').cycle('pause'); 
    });
});

You can send it the 'pause' message on ready:

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