SlidesJS Autoplay无法正常工作

时间:2014-01-20 04:16:55

标签: javascript jquery autoplay slidesjs

我正在尝试在简单的SlidesJS轮播上进行自动播放: http://www.cycle22x.com/

我检查了一些其他线程来解决类似的问题,但提供的解决方案不起作用?以下是文件中包含的脚本:

<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="/scripts/jquery.slides.min.js"></script>

<script>
$(function() 
{
    $('#slides').slidesjs(
    {
        play: 1000,
        pause: 10,
        hoverPause: true,
        width: 960,
        height: 540,
        navigation: 
        {
            effect: "fade"
        },
        pagination: 
        {
            effect: "fade"
        },
        effect: 
        {
            fade: 
            {
                speed: 400
            }
        }
    });
});
</script>

非常感谢任何想法或想法。

1 个答案:

答案 0 :(得分:5)

您需要使用auto: true进行自动播放,例如:

...
$('#slides').slidesjs({
   width: 940,
   height: 528,
   play: {
      active: true,
      auto: true,
      interval: 4000,
      swap: true,
      pauseOnHover: true,
      restartDelay: 2500
   }
});

见这里:: Example Autoplay