问题一:onSlideChangeEnd回调偶尔不触发
使用 fade 过渡方法,onSlideChangeEnd 回调偶尔触发,偶尔不触发。 因此使用 onTransitionEnd(过渡效果结束之后触发);
var mySwiper = new Swiper('.swiper-container',{
effect: 'fade',
onTransitionEnd: function (swiper) {
console.log("页面跳转到第:", swiper.activeIndex, " 页")
}
})