Jquery Cycle 插件,如何语法循环持续时间
我刚刚在网站上使用了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
超时
选项。Use the
timeout
option.