gpt4 book ai didi

jquery - bx slider 启动/停止功能

转载 作者:行者123 更新时间:2023-12-01 00:15:54 25 4
gpt4 key购买 nike

我正在使用 bxslider 插件,并为上一个和下一个功能创建了一些外部控件,尽管我似乎不知道如何对开始/停止控件执行相同的操作。

基本上我想用它作为 slider 的播放/暂停功能。

有人使用过这个插件吗?

这是我到目前为止所拥有的,没有启动/停止功能工作:

http://jsfiddle.net/WaWLN/1/

此外,我希望 slider 能够“自动”播放,并具有此外部控件。我刚刚注意到,单击我的任何链接似乎都会禁用自动播放,我必须刷新页面才能将其恢复。

最佳答案

我不知道您是否仍然需要这个问题的答案,但是如果您将代码更新为此,它应该可以工作:

var slider = $('#bxslider').bxSlider({

auto: true,

controls: false

});

$('#go-prev').click(function(){

slider.goToPreviousSlide();

slider.startShow(); //added this line

return false;
});

$('#go-next').click(function(){

slider.goToNextSlide();

slider.startShow(); //added this line

return false;

});

$('#my-start-stop').click(function(){

/* added a class to your #my-start-start a tag called "stopShow", note: would recommend that you also change the text to say "Stop" when the show is active and "Start" when the show is not. :) */

if($('#my-start-stop').attr('class') == 'stopShow'){

slider.stopShow();

$('#my-start-stop').removeClass('stopShow');

} else {

slider.startShow();

$('#my-start-stop').addClass('stopShow');


}


return false;
});

关于jquery - bx slider 启动/停止功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8708743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com