一、swiper每页上都有动画,当翻到此页时动画才会显示,可是会遇到翻页翻到一半并无彻底翻过去,致使此页的动画已经隐藏,而下一页的动画尚未执行,因此会出现画面空白的问题。javascript
解决方法是增长onTouchEnd的回调。java
var mySwiper = new Swiper ('.swiper-container', { direction : 'vertical', pagination: '.swiper-pagination', mousewheelControl : true, loop:true, onInit: function(swiper){ swiperAnimateCache(swiper); swiperAnimate(swiper); }, onSlideChangeEnd: function(swiper){ swiperAnimate(swiper); }, onTouchEnd: function (swiper) { swiperAnimate(swiper); } });