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

时间:2011-09-28 16:23:35

标签: jquery slideshow autoplay

我刚安装了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谢谢!

1 个答案:

答案 0 :(得分:1)

以下是我的看法

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