swiper内容滚动太长滚动Bug

swiper内部有个横向滚动的盒子

由于swiper滚动,导致滚动盒子的时候自动跳到了下一页

wiper提供一个 noSwipingClass的属性,用来阻止自带的滚动事件

window.mySwiper = new Swiper('#Jswiper', {
direction: 'vertical',
mousewheelControl: true,
speed: 700,
initialSlide: 0,
autoplay: false,
loop: false,
touchMoveStopPropagation: false,
noSwipingClass : 'J_scroll',
nextButton: '.icon-btn',
onInit: function() {
},
onTransitionStart: function(mySwiper) {
if (mySwiper.activeIndex == ($('.part').length - 1)) {
$(".icon-btn").hide();
} else {
$(".icon-btn").show();
}
}
});

摘自

上一篇:开启SQL Server 2012的远程连接


下一篇:Windows 7硬盘安装CentOS 6.4 双系统 (WIN7下硬盘安装Linux(Fedora 16,CentOS 6.2,Ubuntu 12.04))