欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue使用 better-scroll的参数和方法详解

程序员文章站 2022-04-10 11:08:29
格式:var obj = new bscroll(object,{[option1,],.,.}); 注意: 1、要确保object元素的高度比其父元素高 2...

格式:var obj = new bscroll(object,{[option1,],.,.});

注意:

1、要确保object元素的高度比其父元素高
2、使用时,一定要确保object所在的dom渲染后,再用上面的语句,或者obj.refresh()

options 参数

  1. startx: 0 开始的x轴位置
  2. starty: 0 开始的y轴位置
  3. scrolly: true 滚动方向为 y 轴
  4. scrollx: true 滚动方向为 x 轴
  5. click: true 是否派发click事件,通常判断浏览器派发的click还是betterscroll派发的click,可以用event._constructed,若是bs派发的则为true
  6. directionlockthreshold: 5
  7. momentum: true 当快速滑动时是否开启滑动惯性
  8. bounce: true 是否启用回弹动画效果
  9. selectedindex: 0 wheel 为 true 时有效,表示被选中的 wheel 索引
  10. rotate: 25 wheel 为 true 时有效,表示被选中的 wheel 每一层的旋转角度
  11. wheel: false 该属性是给 picker 组件使用的,普通的列表滚动不需要配置
  12. snap: false 该属性是给 slider 组件使用的,普通的列表滚动不需要配置
  13. snaploop: false 是否可以无缝循环轮播
  14. snapthreshold: 0.1 用手指滑动时页面可切换的阈值,大于这个阈值可以滑动的下一页
  15. snapspeed: 400, 轮播图切换的动画时间
  16. swipetime: 2500 swipe 持续时间
  17. bouncetime: 700 弹力动画持续的毫秒数
  18. adjusttime: 400 wheel 为 true 有用,调整停留位置的时间
  19. swipebouncetime: 1200 swipe 回弹 时间
  20. deceleration: 0.001 滚动动量减速越大越快,建议不大于0.01
  21. momentumlimittime: 300 符合惯性拖动的最大时间
  22. momentumlimitdistance: 15 符合惯性拖动的最小拖动距离
  23. resizepolling: 60 重新调整窗口大小时,重新计算better-scroll的时间间隔
  24. preventdefault: true 是否阻止默认事件
  25. preventdefaultexception: { tagname: /^(input|textarea|button|select)$/ } 阻止默认事件
  26. hwcompositing: true 是否启用硬件加速
  27. usetransition: true 是否使用css3的transition属性
  28. usetransform: true 是否使用css3的transform属性
  29. probetype: 1 滚动的时候会派发scroll事件,会截流。2滚动的时候实时派发scroll事件,不会截流。 3除了实时派发scroll事件,在swipe的情况下仍然能实时派发scroll事件

events 事件

代码实例:

let scroll = new bscroll(document.getelementbyid('wrapper'),{
  probetype: 3
})
 
scroll.on('scroll', (pos) => {
 console.log(pos.x + '~' + pos.y)
})
  1. beforescrollstart - 滚动开始之前触发
  2. scrollstart - 滚动开始时触发
  3. scroll - 滚动时触发
  4. scrollcancel - 取消滚动时触发
  5. scrollend - 滚动结束时触发
  6. touchend - 手指移开屏幕时触发
  7. flick - 触发了 fastclick 时的回调函数
  8. refresh - 当 better-scroll 刷新时触发
  9. destroy - 销毁 better-scroll 实例时触发

函数列表

scrollto(x, y, time, easing):滚动到某个位置,x,y 代表坐标,time 表示动画时间,easing 表示缓动函数scroll.scrollto(0, 500)

scrolltoelement(el, time, offsetx, offsety, easing):滚动到某个元素,el(必填)表示 dom 元素,time 表示动画时间,offsetx 和 offsety 表示坐标偏移量,easing 表示缓动函数

refresh():强制 scroll 重新计算,当 better-scroll 中的元素发生变化的时候调用此方法

getcurrentpage():snap 为 true 时,获取滚动的当前页,返回的对象结构为 {x, y, pagex, pagey},其中 x,y 代表滚动横向和纵向的位置;pagex,pagey 表示横向和纵向的页面索引。用法如:getcurrentpage().pagex 

gotopage(x, y, time, easing)
snap 为 true,滚动到对应的页面,x 表示横向页面索引,y 表示纵向页面索引, time 表示动画,easing 表示缓动函数(可省略不写)

enable()启用 better-scroll,默认开启

disable()  禁用 better-scroll

destroy() 销毁 better-scroll,解绑事件

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。