Swiper中文论坛
标题:
swiper循环播放时首屏动画不播放的解决方法
[打印本页]
作者:
jnletao
时间:
2017-11-11 16:06
标题:
swiper循环播放时首屏动画不播放的解决方法
最近刚接触swiper,确实好用。正好用到 循环播放+页内动画效果,结果遇到其他同学发贴遇到的问题,分析了一下代码,下面给出解决方案。
//幻灯动画
var mySwiper = new Swiper ('#swiper-container01', {
pagination: '#swiper-container01 > .pagination',
paginationClickable :true,
autoplay : 10000,
speed:1,
loop:true,
//autoplayDisableOnInteraction : false,
//onInit: function(swiper){ //Swiper2.x的初始化是onFirstInit
onSwiperCreated: function(swiper){ //这是重点, 不能用onInit,要用这个
swiperAnimateCache(swiper); //隐藏动画元素
swiperAnimate(swiper); //初始化完成开始动画
},
onSlideChangeEnd: function(swiper){
swiperAnimate(swiper); //每个slide切换结束时也运行当前slide动画
}
})
复制代码
作者:
xyg
时间:
2018-4-18 14:57
感谢楼主的分享,我也遇到同样的问题,看到您的帖子问题已解决,谢谢!
欢迎光临 Swiper中文论坛 (http://bbs.swiper.com.cn/)
Powered by Discuz! X3.2