重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
// 滚动图
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');
}
});