0

我正在使用插件 bx 滑块来控制幻灯片。它设置为自动,因此幻灯片会自动开始。当我单击自定义按钮(不是插件的一部分)时,我希望滑块停止。他们有一个名为 stopAuto() 的函数,但这并没有做任何事情。首先,他使用对他来说更有意义的事物描述。

这是插件bx 滑块的链接

这是我的代码:

var slider = $('.bxslider').bxSlider({
    auto: true,
    pause : 3000,
    autoHover: true
});

// This is just a sample fn, the real one has a different name and a lot more going on in it. So to save space I made this one up.  This will get called with a click on a certain <a> element
function slideshowStop(){
    slider.stopAuto();
    return false;
}
4

1 回答 1

1

just set infinite loop attributes to false

 $('.bxslider').bxSlider({
     auto: true,
     pause : 3000,
     autoHover: true,
     infiniteLoop: false
 });
于 2014-06-21T16:24:43.747 回答