swiper 基本用法
2018-12-06 本文已影响0人
Yi_9565
Progress(进度)
watchSlidesProgress
作用:开启这个参数来计算每个slide的progress(进度、进程)
<script>
var mySwiper = new Swiper('.swiper-container',{
watchSlidesProgress : true,
})
mySwiper.progress;
mySwiper.slides[2].progress; //获取第三张slide的进度值
</script>