用户操作swiper之后,是否禁止autoplay。默认为true:停止。
如果设置为false,用户操作swiper之后自动切换不会停止,每次都会重新启动autoplay。
操作包括触碰,拖动,点击pagination等。
Swiper3.x
<script>
var mySwiper = new Swiper('.swiper-container',{
autoplay : ,
autoplayDisableOnInteraction : false, // 用户操作swiper之后,是否禁止autoplay
})
</script>
.