关于使用Vue判断页面是否滚动到底部的事件监听

Posted 吃螃蟹的小孩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于使用Vue判断页面是否滚动到底部的事件监听相关的知识,希望对你有一定的参考价值。

关于使用Vue判断页面是否滚动到底部的事件监听

DOM三个属性

scrollTop

元素顶部到元素可视区域顶部的像素距离(可读写)。

clientHeight

元素的像素高度,包括盒子内容content和内边距padding, 不包括边框外边距和水平滚动条(只读)。

scrollHeight

类似于clientHeight,但包括由于overflow属性不可见内容的高度。

滚动到底部的判断

element.scrollHeight-element.scrollTop=element.clientHeight

Vue写法

只需监听scroll事件获取到scrollTop, clientHeight 和 scrollHeight的值再进行判断,就能知道元素是否滚动到底部。

<template>
  <div id="app">
    <div class="scroll-view"
         ref="scrollView"
         id="scroll-view"
         @scroll="handleScroll">
      <div
          v-for="(item, index) in list"
          :key="index"
          class="list-item">
        列表项{{item}}
      </div>
    </div>
  </div>
</template>
<script>

export default {
  name: 'HelloWorld',
  data() {
    return {
      list: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
    };
  },
  mounted() {
    this.$nextTick(() => {
      console.log('clientHeight', this.$refs.scrollView.clientHeight)
    })
  },
  methods: {
    handleScroll(e) {
      const {scrollTop, clientHeight, scrollHeight} = e.target
      // console.log(scrollTop, clientHeight, scrollHeight)
      if (scrollTop + clientHeight === scrollHeight){
        alert('滚动到底部啦')
      }
    }
  }
}
</script>
<style scoped>
.scroll-view {
  width: 400px;
  height: 300px;
  overflow-y: scroll;
  background-color: #68b687;
}

.list-item {
  padding: 40px 0;
}

.list-item:nth-child(2n + 1){
  background-color: rgba(0, 0, 0, .2);
}

.list-item:nth-child(2n + 2){
  background-color: rgba(222, 221, 221, 0.2);
}
</style>

效果

以上是关于关于使用Vue判断页面是否滚动到底部的事件监听的主要内容,如果未能解决你的问题,请参考以下文章

vue 监听某个div垂直滚动条下拉到底部的方法

Qt实现小功能之列表无限加载(创意很不错:监听滚动条事件,到底部的时候再new QListWidgetItem)

vue事件监听

Vue3返回顶部组件及返回顶部js封装

下拉加载更多内容(滚动加载)

js window.scroll 怎么判断滚动到底部