小程序里使用scroll-view
<scroll-view style="width: 100%;height: {{windowHeight}}px;background-color:#ececec;"
id="scroll-view"
scroll-y="true"
bindscroll="scroll">
</scroll-view>
bindscroll="scroll"内的scroll方法可检测滚动距离
scroll(e) {
console.log('滚动距离:'+e.dateil.scrollTop)
}
但是在快读滚动的过程中明明已经滚动到顶部了scrollTop竟然还在300。
缓慢滑动虽然没有问题,但是在快速滚动的时候scrollTop会出现非常大的误差。
以下是解决方法
1.这是因为每次滚动监听事件都会被调用比较耗费资源系统会默认节流可以在scroll-view 加一个 throttle=“{{false}}” 关闭节流
<scroll-view
style="width: 100%;height: {{windowHeight}}px;background-color:#ececec;"
id="scroll-view"
throttle="{{false}}"
scroll-y="true"
bindscroll="scroll">
</scroll-view>
2.减少scroll方法内的操作因为scroll-view内随便滑动一下监听事件可能会被调用上百次,如果在方法内写这种赋值的操作小程序可能会卡死无法滑动,建议在scrollTop到达一定数值后在进行操作,比如scrollTop=0先判断时候滑动到顶部或者底部,再来控制其他view的显示隐藏。