TA的每日心情 | 慵懒 2018-1-31 13:54 |
---|
签到天数: 1 天 [LV.1]初来乍到
新手上路
- 积分
- 13
|
现在的情况是第1张向左滑到第2张没问题,第2张向左滑不到第3张,会一直在第2张。第2张可以向右滑到第1张。
用的框架是vue1.0 配置如下
var that =this;
that.album = new Swiper('.view .cp-album .swiper-container', {
preloadImages:false,
updateOnImagesReady : true,
zoom: true,
initialSlide : 0,
onSlideChangeEnd : function( swiper ){
that.nowSelectImgIndex = swiper.activeIndex;
that.album.slideTo( that.nowSelectImgIndex , 1 , false );
},
onSlideChangeStart : function( swiper ){
that.nowSelectImgIndex = swiper.activeIndex;
}
})
|
|