• vue判断滚动条上下拉及是否在顶部


    方式1. 使用useScroll方式

    import { useScroll } from '@vueuse/core'
    setup() {
        const showNaviBar = ref(true)
        const { arrivedState } = useScroll(document.querySelector('.body'), {
          onScroll: (e) => {
            console.log(arrivedState.top, arrivedState.bottom)
            if (arrivedState.top) {// 在顶部
              showNaviBar.value = true
              return
            }
            if (arrivedState.bottom) {// 到底
              showNaviBar.value = false
            } else {
              showNaviBar.value = true// 其它情况..
            }
          },
        })
        return {
        	showNaviBar,
    	}
     }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    方式2. 直接监听dom的scroll事件

    import { ref, onBeforeUnmount, onMounted } from '@vue/composition-api'
    setup() {
        const showNaviBar = ref(true)
        const scrollNum = ref(0)
        const handleScroll = (e) => {
          const scrollElement = e.target
          const scrollTop = scrollElement.scrollTop
          const scroll = scrollTop - scrollNum.value
          scrollNum.value = scrollTop
          console.log(scrollTop, scroll)
          if (scrollTop === 0) {// 在顶部,不滚动的情况
            showNaviBar.value = false
            return
          }
          if (scroll >= 0) { // 在滚动时,向下
            showNaviBar.value = false
          } else {// 在滚动时,向上
            showNaviBar.value = true
          }
        }
        onMounted(() => {  
          const scrollElement = document.querySelector('.body')
          scrollElement.addEventListener('scroll', handleScroll)
        })
        onBeforeUnmount(() => {  
          const scrollElement = document.querySelector('.body')
          scrollElement.removeEventListener('scroll', handleScroll)
          showNaviBar.value = true
        })
        return {
        	showNaviBar,
    	}
     }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    handleScroll 打印日志: down
    2582 23
    2601 19
    2614 13
    2623 2
    handleScroll 打印日志: up
    2787 -13
    2773 -14
    2728 -8
    2724 -4
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
  • 相关阅读:
    NIO和多路复用
    3Dmax中VR渲染太阳光渲染参数怎么设置?渲染100云渲染助力
    OpenGL 着色器使用
    制作游戏拼图游戏
    在西交更快的pip源
    几种典型的深度学习算法:(CNN、RNN、GANS、RL)
    【华为OD机试真题 JS】求满足条件的最长子串的长度
    C语言:用递归函数求n的阶乘
    Windows Server 2012 R2 安装 OpenSSH
    Echart 柱状图,X轴斜着展示
  • 原文地址:https://blog.csdn.net/zoeou/article/details/132808572