swiper移动端轮播插件(触碰图片之后停止轮播)

下面是我遇到的问题,也是用此插件常用的几个参数,如果你的轮播不需要很复杂,看本文就可以解决。假如你想多了解些, 看官们这里请 swiper 插件的官方地址。

第一步 引入 swiper.min.js

<script src="https://www.jb51.net/style/js/swiper.min.js"></script>

第二步 html

<div> <div> <div> <img alt="" src="https://wx.okair.net/wxpic/wxb2c/indexpage/index_banner1.jpg"> </div> <div> <img alt="" src="https://wx.okair.net/wxpic/wxb2c/indexpage/index_banner2.jpg"> </div> <div> <img alt="" src="https://wx.okair.net/wxpic/wxb2c/indexpage/index_banner3.jpg"> </div> </div> <div></div> <!--需要轮播序号的时候写--> </div>

第三步 调用 ( 重点来了 )

var mySwiper = new Swiper('.swiper-container', { pagination : '.swiper-pagination', loop : true, autoplay : 3000 });

现在这种情况下,图片可以自动轮播,但是当用手触碰之后,就会停止轮播,所以要再添加一个参数

var mySwiper = new Swiper('.swiper-container', { pagination : '.swiper-pagination', loop : true, autoplay : 3000, autoplayDisableOnInteraction : false /* 注意此参数,默认为true */ });

无论怎么滑,轮播事件都会重新触发。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://127.0.0.1/wyydjy.html