解决方法
使用暂停选项:
$('.bxslider').bxSlider({ pause: 3000 });
例:
http://jsfiddle.net/Yq3RM/202/
更新
另一个修改每个图像暂停的示例. bxSlider没有一个很好的内置方法可以做到这一点我知道,但是我能够通过以下方式将其拉出来:
var ImagePauses = [1000,3000,6000,9000,12000,15000]; var slider = $('.bxslider').bxSlider(); modifyDelay(0); function modifyDelay(startSlide){ slider.reloadSlider({ mode: 'horizontal',infiniteLoop: true,auto: true,autoStart: true,autoDirection: 'next',autoHover: true,pause: ImagePauses[startSlide],autoControls: false,pager: true,pagerType: 'full',controls: true,captions: true,speed: 500,startSlide: startSlide,onSlideAfter: function($el,oldindex,newIndex){ modifyDelay(newIndex); } }); }