swiper 左右切换,获取当前页数

            页是动态创建的这里就不写上了   

             
                   


                       

                       

                   

                   

 

var swiper = new Swiper('.swiper-container', {
    paginationClickable: true,
    observer: true,
    observeParents: true,
    pagination: {
        el: '.swiper-pagination',
        clickable: true,
    },
    on: {
        slideChangeTransitionEnd: function() {

       //this.activeIndex 当前下标
            var x = 0;
            Right_box_first(this.activeIndex * 10, 10); 
        }
    }
});

你可能感兴趣的:(前端)