Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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')

}

}

})

在做响应式的时候,手机端不太适合做整屏滚动,该怎么设置?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...