Jquery Cycle 插件,如何语法循环持续时间

发布于 2024-10-21 12:18:08 字数 317 浏览 2 评论 0原文

我刚刚在网站上使用了 jQuery Cycle 插件。

所以我不知道告诉 Cycler 每 2-3 秒而不是 5 秒淡化图像的正确方法,这是我的 index.html 中的代码

$(document).ready(function() {
   $('.slideshow').cycle({
        fx: 'fade'
    });
});

我对 jquery 语法很糟糕, ,我很想知道如何正确告诉 jquery 3 秒并同时使用该语句。
我对 javascript 实在是太糟糕了。

i just used the jQuery Cycle plugin on a website.

I'm HORRIBLE with jquery syntaxing so I dont know the correct way to tell Cycler to fade my images every 2-3 seconds instead of 5 seconds here's the code in my index.html <head>

$(document).ready(function() {
   $('.slideshow').cycle({
        fx: 'fade'
    });
});

please, id love to know how to correctly tell jquery 3 seconds and cose the statement aswell.

Im just so bad with javascript.

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

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

发布评论

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

评论(1

万劫不复 2024-10-28 12:18:08

使用超时选项

$(document).ready(function() {
   $('.slideshow').cycle({
        fx: 'fade',
        timeout: 2500 // milliseconds = 2.5 seconds
    });
});

Use the timeout option.

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