Swiper.js使用遇到的问题总结

问题一:onSlideChangeEnd回调偶尔不触发

使用 fade 过渡方法,onSlideChangeEnd 回调偶尔触发,偶尔不触发。 因此使用 onTransitionEnd(过渡效果结束之后触发);

var mySwiper = new Swiper('.swiper-container',{
  effect: 'fade',
  onTransitionEnd: function (swiper) {
    console.log("页面跳转到第:", swiper.activeIndex, " 页")
  }
})

问题二:

上一篇:vue-awesome-swiper重新渲染时,页面不能拖拽问题


下一篇:解决 swiper设置loop为true时,echarts图表不显示