一、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); } });