首页 > 其他分享 >vue3实现元素监听滚动事件

vue3实现元素监听滚动事件

时间:2023-06-01 16:12:54浏览次数:44  
标签:isReachBottom 滚动 el clientHeight value vue3 scrollTop 监听 scrollHeight

// useScroll.js

import { debounce } from '@/common/util.js'

export default function useScroll(elRef) {
  console.log('########3useScroll', elRef.value)
  let el = window
  const isReachBottom = ref(false)
  const clientHeight = ref(0)
  const scrollTop = ref(0)
  const scrollHeight = ref(0)

  const scrollListenerHandler = debounce(() => {
    if (el === window) {
      clientHeight.value = document.documentElement.clientHeight || document.body.clientHeight
      scrollHeight.value = document.documentElement.scrollHeight || document.body.scrollHeight
      scrollTop.value = document.documentElement.scrollTop || document.body.scrollTop
    } else {
      clientHeight.value = el.clientHeight
      scrollTop.value = el.scrollTop
      scrollHeight.value = el.scrollHeight
    }
    if (clientHeight.value + scrollTop.value >= scrollHeight.value) {
      isReachBottom.value = true
    } else {
      isReachBottom.value = false
    }
    console.log('#########scrollTop', scrollTop.value)
    console.log('#########clientHeight', clientHeight.value)
    console.log('#########scrollHeight', scrollHeight.value)
    console.log('#########isReachBottom', isReachBottom.value)
  }, 100)
  onMounted(() => {
    if (elRef) {
      el = elRef.value
    }
    el.addEventListener('scroll', scrollListenerHandler)
  })
  onUnmounted(() => {
    el.removeEventListener('scroll', scrollListenerHandler)
  })

  return { isReachBottom, clientHeight, scrollTop, scrollHeight }
}

使用的时候,通过监听到达底部的变量改变,可以做想做的事情,比如加载更多,或跳转页面等。



import useScroll from '@/hooks/useScroll'

const { isReachBottom } = useScroll(dom)
watch(isReachBottom, () => {
      console.log('#########isReachBottom改变', isReachBottom)
 })

注意:对于滚动事件,最好要使用防抖,防抖可以保证最后一次滚动事件始终是触发的,而节流是在一段时间内执行一次,最后一次不保证会触发,除非手动修改节流方法,来最后一次保证始终触发。

修改后的节流方法如下:

// 节流, 不需要 setTimeout,只需要判断上次执行和本次触发时间的时间差
            // setTimeout只是用来兜底的,防止最后一次没有执行
            function throttle(fn, delay) {
                let timer = null;
                let begin = 0;
                return function () {
                    if (timer) {
                        clearTimeout(timer);
                    }
                    let flag = false;
                    let cur = new Date().getTime();
                    if (cur - begin > delay) {
                        fn.apply(this, arguments);
                        begin = cur;
                        flag = true;
                    }
                    console.log("flag", flag);
                    if (!flag) {
                        timer = setTimeout(() => {
                            console.log("兜底");
                            fn.apply(this, arguments);
                        }, delay);
                    }
                };
            }

修改前:

// 节流
const throttle = (func, delay) => {
    let lastTime = 0;
    return function (...args) {
        let now = +new Date().getTime();
        if (now - lastTime >= delay) {
            func.apply(this, args)
            lastTime = now;
        }
    }
}

// 防抖
function debounce(func,delay) {
    let timer = null;
    return function(...args){
        clearTimeout(timer)
        timer = setTimeout(() => {
            func.apply(this,args)
        }, delay);
    }
} 

 

标签:isReachBottom,滚动,el,clientHeight,value,vue3,scrollTop,监听,scrollHeight
From: https://www.cnblogs.com/beileixinqing/p/17449329.html

相关文章

  • js 粘贴定位 滚动到顶部后,固定在头部
    由于css的position:sticky的粘贴定位存在兼容性问题,因为决定使用js来判断盒子的位置,添加固定定位来解决,实例代码如下:<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"......
  • WPF 监听TextBlock 的Text改变事件
    privatestaticSystem.ComponentModel.DependencyPropertyDescriptordescriptor=System.ComponentModel.DependencyPropertyDescriptor.FromProperty(TextBlock.TextProperty,typeof(TextBlock));descriptor.AddValueChanged(tb,TbTextChanged);priva......
  • Vue3 尝试小记
    1.安装vue使用npm或yarn安装Vue3:#npmnpminstallvue@next#yarnyarnaddvue@next2.创建项目文件夹在命令行中,输入以下命令,在根目录下创建一个项目文件夹:mkdirmy-vue3-project3.初始化package.json使用npminit命令,在该目录中创建package.json文件:npm......
  • uniapp+vue3+ts 使用pinia报错
    "hasInjectionContext"isnotexportedby"node_modules/vue-demi/lib/index.mjs",importedby"node_modules/pinia/dist/pinia.mjs".11:36:19.397at../node_modules/pinia/dist/pinia.mjs:6:9 解决方法:把pinia降级 先删除pinianpmunipin......
  • vue3 ts elementplus行头加el-tooltip
    <!--vue3tselementplus行头加el-tooltip--><el-table-columnalign="left"><template#header><el-tooltipclass="box-item"effect="dark"con......
  • JS监听dom高度变化方法总结
    前沿:有时候我们需要监听dom的变化,比如获取父元素的高度,动态的设置子元素的高度,所以需要监听dom的高度变化,才能准确获取dom的高度,那么有哪些监听dom高度变化的方法呢?今天简单列举一下。1、MutationObserver构造函数MutationObserverAPI用来监视DOM变动。DOM的任何变动,......
  • vue3 整数还是显示整数,有小数的保留两位小数显示,写一个指令
    1、新建number-format.tsimport{Directive,DirectiveBinding}from"vue";constnumberFormat:Directive={ mounted(el,binding:DirectiveBinding){  constvalue=binding.value.text||"0";  constparsedValue=parseFloat(valu......
  • 多线程或监听器@Autowired注入null空指针
    //问题:在多线程中使用@Autowired注入IUserService时,userService使用时为null,获取不到bean//原因:newthread不在spring容器中,也就无法获得spring中的bean对象;@AutowiredprivateIUserServiceuserService;//解决:手动获取bean对象privateIUserServiceuserService=AppCo......
  • vue3 整数还是显示整数,有小数的保留两位小数显示,并显示千分符,写一个指令
    1、新建number-thousander-format.tsimport{Directive,DirectiveBinding}from"vue";constnumberThousanderFormat:Directive={ mounted(el,binding:DirectiveBinding){  constvalue=binding.value.text||"0";  constparsedV......
  • vue监听浏览器窗口大小变化,做对应的操作
    页面初始化mounted的时候,通过document.body.clientWidth和document.body.clientHeight获取到浏览器的宽和高,然后通过window.onresize来监听浏览器窗口的变化,在这里来改变我们的变量宽和高即可。(created()的时候不行,因为此时document还没有生成)<template><sectionclass="p-1......