使jQuery图像滑块插件自动播放

时间:2015-04-07 11:01:59

标签: javascript jquery

我正在使用jQuery和JavaScript文件作为图片滑块:

$(function() {
  $('#slides').slidesjs({
    width: 1200,
    height: 350,
    navigation: false
  });
});

如何自动播放幻灯片?

1 个答案:

答案 0 :(得分:1)

您需要使用auto: true使其自动播放

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