美文网首页
swiper操作使用心得

swiper操作使用心得

作者: 蜗牛Coming | 来源:发表于2019-02-15 16:50 被阅读0次

swiper使用打脸心得,唉。。。。

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

相关文章

网友评论

      本文标题:swiper操作使用心得

      本文链接:https://www.haomeiwen.com/subject/hxjljqtx.html