0

当幻灯片结束(显示所有图片时)它不会重新开始,卡在最后。任何帮助表示赞赏。

这是代码:

$(".flexslider").flexslider({       
    animation: "fade",
    controlsContainer: ".flex-container",
    useCSS: false,
    touch: true,
    controlNav: false,
    animationLoop: false,       
    smoothHeight: true,
    slideshowSpeed: 4500,
    slideshow: true,
    pauseOnHover: true  
});
4

2 回答 2

0

尝试reverse: true用于从 1 开始

于 2014-02-28T05:40:13.910 回答
0

您需要更改以下行:

animationLoop: false, 

animationLoop: true, 

还要确保不要悬停滑块,因为示例中的以下代码行将使其在悬停时暂停(鼠标悬停):

pauseOnHover: true 
于 2013-10-21T13:22:42.233 回答