解决swiper插件点击/拖动按钮或页面后不自动轮播的问题
2022-07-15 本文已影响0人
禾苗种树
- 解决方法 我使用的是Swiper 4.5.0版本,
因为swiper默认点击后不自动轮播所以要设置一下
autoplay: { disableOnInteraction: false }
- 全部代码
$(function(){
var swiper = new Swiper('.swiper-container', {
// autoplay:true,
loop:true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
autoplay: { disableOnInteraction: false }
});
})