这篇文章主要介绍了vue scroll滚动判断的实现(是否滚动到底部、滚动方向、滚动节流、获取滚动区域dom元素),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
1、是否滚动到底部
isScrollBottom() { // 是否滚动到了底部 this.box = this.$refs.chatListWrapper var clientHeight = this.box.clientHeight var scrollTop = this.box.scrollTop var scrollHeight = this.box.scrollHeight if (scrollTop + clientHeight == scrollHeight) { this.$store.dispatch('setBottomBtn', false, { root: true }) // 隐藏直达最新消息按钮 this.isBottom = true this.isTop = false } else { this.$<em>本文来源[email protected]搞@^&代*@码2网</em>store.dispatch('setBottomBtn', true, { root: true }) // 显示直达最新消息按钮 this.isTop = false this.isBottom = false if (scrollTop == 0) { this.isTop = true } } },
2、scroll滚动方向判断
getDirection() { // scroll滚动方向~~~~ this.box = this.$refs.chatListWrapper var scrollTop = this.box.scrollTop var scroll = scrollTop - this.initTop this.initTop = scrollTop let dir = 'down' if (scroll <0) { dir = 'up' } else { dir = 'down' } return dir },
3、滚动节流
1)、在滚动的dom上绑定scroll事件,监听滚动
2)、data中定义:fnScroll: () => {},
初始值
3)、mounted中给fnScroll函数赋值,_.throttle实现滚动节流
this.fnScroll = _.throttle(() => { }, 500)
4、获取滚动可视区域内dom:
实现注意:判断当前元素是否在可视区域内,若在则存到isSeeDomArr中,然后循环isSeeDomArr数组,拿到当前可视区域内的最后一个dom,再去判断是否更新对应的咨询轨迹。
不要滚动时就去更新,这样会造成不停请求更新,最后一次请求可能无效,造成数据的错乱
sendRead() { const chatLi = document .getElementById('chat_list_wrapper') .getElementsByTagName('li') var container = this.$refs.chatListWrapper var swHeight = container.clientHeight const scrollTop = container.scrollTop const aa = swHeight + scrollTop let isSeeDomArr = [] for (let j = 0; j <chatLi.length; j++) { if (scrollTop <chatLi[j].offsetTop && chatLi[j].offsetTop
the end:滚动加载这些判断前前后后改了好多次,这次终于感觉逻辑比较清晰了,也算对自己有个交代。。。
以上就是vue scroll滚动判断的实现(是否滚动到底部、滚动方向、滚动节流、获取滚动区域dom元素)的详细内容,更多请关注gaodaima搞代码网其它相关文章!