on(type, fn, context)
- 参数:
- {String} type 事件名
- {Function} fn 回调函数
- {context} 函数执行的上下文环境,默认是 this
- 返回值:无
- 作用:监听当前实例上的自定义事件。如:scroll, scrollEnd, pullingUp, pullingDown等。
- 示例:
import BScroll from 'better-scroll'
let scroll = new BScroll('.wrapper')
function onScroll(pos) {
console.log(`Now position is x: ${pos.x}, y: ${pos.y}`)
}
scroll.on('scroll', onScroll)