其他分享
首页 > 其他分享> > swiper手动滑动之后自动轮播失效的解决方法

swiper手动滑动之后自动轮播失效的解决方法

作者:互联网

解决方法

<script> 
var mySwiper = new Swiper('.swiper-container',{
  autoplay: {
    disableOnInteraction: false,
    delay:2000,
  },
})
</script>

用户操作swiper之后,是否禁止autoplay。默认为true:停止。

如果设置为false,用户操作swiper之后自动切换不会停止,每次都会重新启动autoplay。

操作包括触碰,拖动,点击pagination等。

标签:false,轮播,用户,之后,操作,滑动,swiper,autoplay
来源: https://www.cnblogs.com/wangyongx/p/11988606.html