在 jQuery 选项卡幻灯片上设置自动播放

发布于 2024-12-07 01:23:39 字数 610 浏览 0 评论 0原文

我刚刚安装了 jQuery Tabs 幻灯片插件并希望它能够自动播放。然而,当我放入自动播放选项时,它的表现非常不均匀,根本不像手动按下播放按钮时那样。

<script language="JavaScript">

$(function() {

$(".slidetabs").tabs(".images > div", {

// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",

// start from the beginning after the last tab
rotate: true

// use the slideshow plugin. It accepts its own configuration
}).slideshow({autoplay:true});
});
</script>

我是否正确输入了自动播放代码?这是文档。 http://flowplayer.org/tools/tabs/slideshow.html 谢谢!

I've just installed the jQuery Tabs slideshow plugin and would like it to autoplay. However, when I put in the autoplay option, it performs very unevenly, not at all like when the play button is pressed manually.

<script language="JavaScript">

$(function() {

$(".slidetabs").tabs(".images > div", {

// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",

// start from the beginning after the last tab
rotate: true

// use the slideshow plugin. It accepts its own configuration
}).slideshow({autoplay:true});
});
</script>

Have I put the autoplay code in correctly? Here is the documentation. http://flowplayer.org/tools/tabs/slideshow.html Thanks!

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

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

发布评论

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

评论(1

青春有你 2024-12-14 01:23:39

这是我的样子

$(document).ready(function () {  //this is jQuery's "on Load" event
        $("#featured > ul").tabs({ fx: { opacity: 'toggle'} }).tabs("rotate", 5000, true);
    });

Here is how mine looked

$(document).ready(function () {  //this is jQuery's "on Load" event
        $("#featured > ul").tabs({ fx: { opacity: 'toggle'} }).tabs("rotate", 5000, true);
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文