framework7框架访问地址:https://framework7.io/vue/swiper.html
Swiper API : http://idangero.us/swiper/api/
中文版 Swiper API: https://www.swiper.com.cn/api/
本代码使用framework7+vue框架,使用了Swiper API来解决轮播滑动问题。
一开始代码是这样的,注意 示例不能运行,调试时发现,页面加载出来的时候图片可以轮播,但是手动滑动之后,页面的图片不再自动轮播。
一开始代码是这样的,注意 示例不能运行,调试时发现,页面加载出来的时候图片可以轮播,但是手动滑动之后,页面的图片不再自动轮播。
1 ... 2 <f7-swiper v-if="bannerList.length" :params="swiperParams" pagination ref="mySwiper"> 3 <f7-swiper-slide v-for="banner in bannerList" :key="banner.id"> 4 </f7-swiper-slide> 5 </f7-swiper> 6 <script> 7 export default { 8 data () { 9 swiperParams: { 10 speed: 500, 11 loop: true, 12 autoplay: { 13 delay: 2500, 14 }, 15 preventLinksPropagation: false // 阻止点击事件冒泡 16 }, 17 } 18 } 19 </script>
官网示例是这样的,f7引用的格式不一样,但是配置方法是一致的。
1 var mySwiper = new Swiper('.swiper-container', { 2 speed: 500, 3 loop: true, 4 autoplay: { 5 delay: 2500, 6 } 7 ... 8 });
然后查询官方Swiper API : http://idangero.us/swiper/api/,通过慢慢摸索,找到了一个可以解决手动滑动后,自动滑动失效问题。
属性名:disableOnInteraction:
属性值:boolean true
解释:Set to false and autoplay will not be disabled after user interactions (swipes), it will be restarted every time after interaction
中文意思就是:当disableOnInteraction:false 的时候,手动滑动之后,自动滑动不会失效,每次手动滑动之后,自动滑动会再开启。
属性值:boolean true
解释:Set to false and autoplay will not be disabled after user interactions (swipes), it will be restarted every time after interaction
中文意思就是:当disableOnInteraction:false 的时候,手动滑动之后,自动滑动不会失效,每次手动滑动之后,自动滑动会再开启。
修改后的代码:
注意:disableOnInteraction是autoplay的属性。
1 <f7-swiper v-if="bannerList.length" :params="swiperParams" pagination ref="mySwiper"> 2 <f7-swiper-slide v-for="banner in bannerList" :key="banner.id"> 3 </f7-swiper-slide> 4 </f7-swiper> 5 <script> 6 export default { 7 data () { 8 swiperParams: { 9 speed: 500, 10 loop: true, 11 autoplay: { 12 disableOnInteraction: false, 13 delay: 2500, 14 }, 15 preventLinksPropagation: false // 阻止点击事件冒泡 16 }, 17 } 18 } 19 </script>
官方示例写法:
var mySwiper = new Swiper('.swiper-container', { speed: 500, loop: true, autoplay: { disableOnInteraction: false, delay: 2500, } ... });
原文链接:https://www.jianshu.com/p/f1c6395314f2