当前位置: 代码网 > it编程>前端脚本>Vue.js > vue判断内容是否滑动到底部的三种方式

vue判断内容是否滑动到底部的三种方式

2024年05月15日 Vue.js 我要评论
方式一:直接给滚动的部分加个 @scroll="handlescroll" 然后js里面进行业务处理<div class="tip-info" @scroll="handle

方式一:直接给滚动的部分加个 @scroll="handlescroll" 然后js里面进行业务处理

<div class="tip-info" @scroll="handlescroll">
    <div class="tip-blank" :key="outerindex" v-for="(item, outerindex) in htmlcaption">
</div>
methods: {
    // 滚动事件
    handlescroll(event) {
      const dialog = event.target;
      if (dialog.scrollheight - dialog.scrolltop === dialog.clientheight) {
        // 当内容滑动到底部时,执行想要的操作
      }
    }
}

方式二:可以采用给滚动内容,在最后一个内容的div后面追加一个新的元素,然后intersectionobserver 进行观察

<div class="tip-info">
    <div class="tip-blank" :key="outerindex" v-for="(item, outerindex) in htmlcaption">
</div>
mounted() {
    this.addnewelementtotipblank();
},
 methods: {
    addnewelementtotipblank() {
      // 创建新元素
      const newelement = document.createelement('div');
      newelement.classname = 'tip-box';
      newelement.textcontent = 'new tip box added';
      // 找到 tip-blank 类所在的 div 元素
      const tipblankdivs = document.queryselectorall('.tip-blank');
      const lasttipblankdiv = tipblankdivs[tipblankdivs.length - 1]; // 获取最后一个 tip-blank 元素
      // 在最后一个 tip-blank 元素后面插入新的 div 元素
      if (lasttipblankdiv) {
        lasttipblankdiv.insertadjacentelement('afterend', newelement);
      }
      // 创建一个观察者实例
      const observer = new intersectionobserver((entries) => {
        console.log(entries);
        entries.foreach((entry) => {
          // entry.isintersecting 判断目标元素是否在视口中
          if (entry.isintersecting) {
            console.log('目标元素在视口中!');
          }
          else {
            console.log('目标元素不在视口中.');
          }
        });
      });
      // 开始观察某个元素
      const targetelement = document.queryselector('.tip-box');
      if (targetelement) {
        observer.observe(targetelement);
      }
      // 停止观察
      // 如果你不再需要观察某个元素,你可以调用:
      observer.unobserve(targetelement);
      // 如果你想停止观察所有元素,你可以调用:
      observer.disconnect();
    },
}

intersectionobserver具体的用法:

intersectionobserver 是一个现代的浏览器 api,允许开发者在某个元素与其祖先元素或顶层文档视口发生交叉时得到通知。它非常适合实现图片懒加载、无限滚动、广告曝光率等功能。

1. 浏览器的兼容性

intersectionobserver目前在大多数现代浏览器中都得到了支持。但是在一些老版本的浏览器,如 ie 中,则没有支持。点击查看 intersectionobserver 的兼容性

2. 如何使用?

const observer = new intersectionobserver((entries, observer) => {
    entries.foreach(entry => {
        // entry.isintersecting 判断目标元素是否在视口中
        if (entry.isintersecting) {
            console.log('目标元素在视口中!');
        } else {
            console.log('目标元素不在视口中.');
        }
    });
});
// 开始观察某个元素
const targetelement = document.queryselector('.some-class');
observer.observe(targetelement);

// 停止观察
// 如果你不再需要观察某个元素,你可以调用:
observer.unobserve(targetelement);
// 如果你想停止观察所有元素,你可以调用:
observer.disconnect();

// 配置选项
当创建 intersectionobserver 实例时,你可以提供一个配置对象,该对象有以下属性:
const options = {
    root: document.queryselector('.scroll-container'), // 观察目标的父元素,如果不设置,默认为浏览器视口
    rootmargin: '10px', // 增加或减少观察目标的可见区域大小
    threshold: [0, 0.25, 0.5, 0.75, 1] // 当观察目标的可见比例达到这些阈值时会触发回调函数
};
const observer = new intersectionobserver(callback, options);

3. 一些常见的应用场景

// 图片懒加载
const observer = new intersectionobserver((entries) => {
    entries.foreach(entry => {
        if (entry.isintersecting) {
            const img = entry.target;
            img.src = img.dataset.lazy;
            observer.unobserve(img);
        }
    });
});
document.queryselectorall('img[data-lazy]').foreach(img => {
    observer.observe(img);
});

// 无线滚动加载
const observer = new intersectionobserver((entries) => {
    entries.foreach(entry => {
        if (entry.isintersecting) {
            loadmorecontent(); // 你的加载更多内容的函数
            observer.unobserve(entry.target); // 如果你只想加载一次,你可以在这里停止观察
        }
    });
});
const loadmoretrigger = document.queryselector('.load-more-trigger');
observer.observe(loadmoretrigger);

方式三 如果前2种方式不可行,可试试这一种

<template>
    <div class="tip-info" @scroll.passive="handlescroll">
        <div class="sn-f-c-c tip-blank" :key="i" v-for="(item, i) in caption">
            {{item}}
        </div>
    </div>
</template>
 
<script>
    data() {
        return {
            caption: []
        };
    },
    methods: {
        // 接口返回数据
        interface() {
            this.caption = ''; // 接口返回数据
            if (this.caption.length > 0) {
                this.$nexttick(() => {
                  this.handlescroll({
                    target: document.queryselector('.tip-info')
                  });
                });
            }
        },
        handlescroll(e) {
          const { scrolltop, clientheight, scrollheight } = e.target;
            // 条件判断(scrollheight - (scrolltop + clientheight)) / clientheight <= 0.05
            // 是在计算滚动条距离底部的距离与可视区域高度的比例。如果这个比例小于或等于5%(0.05),则认为滚动条已经非常接近底部。
            if ((scrollheight - (scrolltop + clientheight)) / clientheight <= 0.05) {
                console.log('内容到底了');
            }       
        }  
    }
</script>

以上就是vue判断内容是否滑动到底部的三种方式的详细内容,更多关于vue判断内容是否滑动到底部的资料请关注代码网其它相关文章!

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com