为什么page页面没有监听滚动事件?
不想用scrolview,直接在页面滚动,但是无法监听滚动事件啊,为什么在scrollview中有bindscroll,在page页面中却没有?
8 回复
tapStart: function(event){
console.log(event)
pageYscroll=event.touches[“0”].pageY
},
tapEnd: function(event){
console.log(event)
return event.changedTouches[“0”].pageY-pageYscroll
},
将这两个函数分别绑定到同一view 里的 bindtouchstart 和 bindtouchend
即可通过 tapEnd的返回值确定滑动方向和大小; 另外view 还有个 bindtouchmove事件,一次滑动能激活很多事件,也能做到