项目场景:
移动端H5页面使用Swiper插件绘制轮播图
问题描述
使用Swiper插件时,轮播时间明明设置了3s,但是轮播速度超级快 ,1s都不到就要切换下一张图。
swiper初始化代码如下:
new Swiper('.analysis-box', {
autoplay: isOneMore ? {
delay: 3000,
disableOnInteraction: false
} : false,
loop: isOneMore,
pagination: '.pagination',
paginationClickable: false,
})
原因分析:
swiper的版本不同 ,造成在使用中的写法不同,官网最新的 swiper3.x 和 swiper4.x 在 分页器 和 自动播放 上有差别,会导致轮播图超快速度的切换。
解决方案:
自动播放( autoplay):
swiper 3.x : autoplay : 3000 swiper 4.x : autoplay : true
分页器:
swiper 3.x : pagination : ‘.swiper-pagination’,paginationClickable : true swiper 4.x : pagination : { el : ‘.swiper-pagination’, clickable : true },
改用swiper3.0的写法,代码如下:
new Swiper('.analysis-box', {
autoplay: isOneMore ? 3000 : false,
autoplayDisableOnInteraction: false,
loop: isOneMore,
pagination: '.pagination',
paginationClickable: false,
})
|