在初始循环后,任何滑块返回到第一个幻灯片

时间:2014-01-08 21:52:32

标签: jquery anythingslider

就像标题所说的那样,我想在循环浏览4张幻灯片之后回到第一张幻灯片。

我浏览了jquery.anythingslider.js中的选项,但我无法确定如何实现此功能。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

我不确定这是否正是您所要求的,但请查看"How do I get the slider to play through my slides, then return to the first one and stop?"下列出的常见问题解答页面,基本上它需要此初始化代码:

$('#slider').anythingSlider({
  stopAtEnd  : true,  // If true & the slideshow is active, the slideshow will stop on the last page.
  onShowStop : function(e, slider){
    setTimeout(function(){
      // only go to the first page if the last page is visible
      if (slider.currentPage === slider.pages) { slider.gotoPage(1); }
    }, slider.options.delay);
  }
});

请注意:此代码将始终将滑块返回到第一个面板,当在最后一个面板上并且幻灯片放映停止时。