swiper手滑导航圆点不同步
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swiper手滑导航圆点不同步相关的知识,希望对你有一定的参考价值。
// 滚动图
var mySwiper = new Swiper(‘.swiper-container‘, {
// 如果需要分页器
pagination: {
el: ‘.swiper-pagination‘,
},
onSlideChangeEnd: function (swiper) { // pagination BUG
var activeIndex = swiper.activeIndex;
$(‘.swiper-pagination‘)
.find(‘span‘)
.eq(activeIndex)
.addClass(‘swiper-pagination-bullet-active‘)
.siblings()
.removeClass(‘swiper-pagination-bullet-active‘);
}
});
以上是关于swiper手滑导航圆点不同步的主要内容,如果未能解决你的问题,请参考以下文章