pc上首页是整屏滚动,代码如下
var pageSwiper = new Swiper('#pageSwipe', {
pagination: {
el: '.outer-pagination',
clickable: true
},
direction: 'vertical',
keyboard : true,
mousewheel : true,
forceToAxis : true,
on:{
init: function(){
swiperAnimateCache(this); //隐藏动画元素
},
slideChangeTransitionEnd: function(){
swiperAnimate(this); //每个slide切换结束时也运行当前slide动画
this.slides.eq(this.activeIndex).find('.ani').removeClass('ani')
}
}
})
在做响应式的时候,手机端不太适合做整屏滚动,该怎么设置?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…