滚动轴滚动方向判断
Posted kugeliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滚动轴滚动方向判断相关的知识,希望对你有一定的参考价值。
开始时的判断代码,通过在滚动函数当中再监听一个滚动函数,然后判断前后的差值来判断是向上滚动还是向下滚动
changeIsDownStatus = () => { const listView = this.listView; const beforeScrollTop = listView.scrollTop; this.listView.addEventListener(‘scroll‘, () => { const afterScrollTop = listView.scrollTop; this.isDown = afterScrollTop > beforeScrollTop; }); };
优化后的方法,通过当前的值减去缓存的值,然后再把缓存的值更新为当前的这种方式来判断滚动的方向,这种方式的性能比上面那种更好,同时代码更加的简洁
changeIsDownStatus = () => { const listView = this.listView; this.isDown = listView.scrollTop > this.beforeScrollTop; this.beforeScrollTop = listView.scrollTop; return this.isDown; };
以上是关于滚动轴滚动方向判断的主要内容,如果未能解决你的问题,请参考以下文章