vue使用 better-scroll的参数和方法详解
格式:var obj = new bscroll(object,{[option1,],.,.});
注意:
1、要确保object元素的高度比其父元素高
2、使用时,一定要确保object所在的dom渲染后,再用上面的语句,或者obj.refresh()
options 参数
- startx: 0 开始的x轴位置
- starty: 0 开始的y轴位置
- scrolly: true 滚动方向为 y 轴
- scrollx: true 滚动方向为 x 轴
- click: true 是否派发click事件,通常判断浏览器派发的click还是betterscroll派发的click,可以用event._constructed,若是bs派发的则为true
- directionlockthreshold: 5
- momentum: true 当快速滑动时是否开启滑动惯性
- bounce: true 是否启用回弹动画效果
- selectedindex: 0 wheel 为 true 时有效,表示被选中的 wheel 索引
- rotate: 25 wheel 为 true 时有效,表示被选中的 wheel 每一层的旋转角度
- wheel: false 该属性是给 picker 组件使用的,普通的列表滚动不需要配置
- snap: false 该属性是给 slider 组件使用的,普通的列表滚动不需要配置
- snaploop: false 是否可以无缝循环轮播
- snapthreshold: 0.1 用手指滑动时页面可切换的阈值,大于这个阈值可以滑动的下一页
- snapspeed: 400, 轮播图切换的动画时间
- swipetime: 2500 swipe 持续时间
- bouncetime: 700 弹力动画持续的毫秒数
- adjusttime: 400 wheel 为 true 有用,调整停留位置的时间
- swipebouncetime: 1200 swipe 回弹 时间
- deceleration: 0.001 滚动动量减速越大越快,建议不大于0.01
- momentumlimittime: 300 符合惯性拖动的最大时间
- momentumlimitdistance: 15 符合惯性拖动的最小拖动距离
- resizepolling: 60 重新调整窗口大小时,重新计算better-scroll的时间间隔
- preventdefault: true 是否阻止默认事件
- preventdefaultexception: { tagname: /^(input|textarea|button|select)$/ } 阻止默认事件
- hwcompositing: true 是否启用硬件加速
- usetransition: true 是否使用css3的transition属性
- usetransform: true 是否使用css3的transform属性
- 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) })
- beforescrollstart - 滚动开始之前触发
- scrollstart - 滚动开始时触发
- scroll - 滚动时触发
- scrollcancel - 取消滚动时触发
- scrollend - 滚动结束时触发
- touchend - 手指移开屏幕时触发
- flick - 触发了 fastclick 时的回调函数
- refresh - 当 better-scroll 刷新时触发
- 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,解绑事件
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: vue通过路由实现页面刷新的方法
推荐阅读
-
vue iview组件表格 render函数的使用方法详解
-
JavaScript使用原型和原型链实现对象继承的方法详解
-
在vue项目中优雅的使用SVG的方法实例详解
-
详解Vue前端对axios的封装和使用
-
PHP中register_globals参数为OFF和ON的区别(register_globals 使用详解)
-
vue-vuex中使用commit提交mutation来修改state的方法详解
-
使用jQuery和ajax代替iframe的方法(详解)
-
后台使用freeMarker和前端使用vue的方法及遇到的问题
-
vue安装和使用scss及sass与scss的区别详解
-
android中DatePicker和TimePicker的使用方法详解