swiper使用打脸心得,唉。。。。
1.要想点击直接滚动到对应的页面,不需要滚动动画
mySwiper.slideTo(0, 0); //切换到第一个slide,速度为0秒
//对应scrollify的
//$.scrollify.instantMove("#" + nowpage);
2.想鼠标直接滚轮操作,不用鼠标拖动滚动
mousewheel: true,
speed:1000, //时间为1s,配合时间使用,不然滚动会很快。
3.滚动前动态加载一些数据
on:{
slideChange:function(){
//逻辑操作
}
//对应scrollify的before方法
网友评论