swiper轮播图设置自动轮播之后如果手动滑动之后,就不会再自动轮播了
解决方法:
var swiper = new Swiper(' .swiper-container', {
pagination: {
el: '.swiper-pagination',
},
loop: true,
autoplay:true,
autoplay: {
disableOnInteraction: false
}
});
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
设置autoplay:true之后,再设置
autoplay:{
disableOnInteraction: false
}
- 1
- 2
- 3