美文网首页
vue中swiper鼠标划入轮播的动停

vue中swiper鼠标划入轮播的动停

作者: 我王某不需要昵称 | 来源:发表于2022-02-14 16:19 被阅读0次

<script> var mySwiper = new Swiper('.swiper',{

  autoplay: {

    pauseOnMouseEnter: true,

  },

})

</script>//6.6.2之前的版本需要通过代码实现此功能mySwiper.el.onmouseover = function(){

  mySwiper.autoplay.stop();

}

mySwiper.el.onmouseout = function(){

  mySwiper.autoplay.start();

}

相关文章

网友评论

      本文标题:vue中swiper鼠标划入轮播的动停

      本文链接:https://www.haomeiwen.com/subject/tkxhlrtx.html