• new IntersectionObserver 使用笔记


    MDN API

    文档链接

    随着网页发展,对检测某个(些)元素是否出现在可视窗相关的需求越来越多了?比如:

    当页面滚动时,懒加载图片或其他内容。
    实现“可无限滚动”网站,也就是当用户滚动网页时直接加载更多内容,无需翻页。
    对某些元素进行埋点曝光
    滚动到相应区域来执行相应动画或其他任务。

    一直以来,检测元素的可视状态或者两个元素的相对可视状态都不是件容易事,大部分解决办法并不完全可靠,实现方式很丑陋,也极易拖慢整个网站的性能。
    IntersectionObserver正因此而生

    需求 : 对某些元素进行埋点曝光

    reportDatail() 方法 对容器内容进行监听
    如果dom 初始化存在 则在mounted() 进行监听即可;
    如果 dom 是组件 是根据 请求返回的data 然后再渲染组件dom 则该方法使用在请求返回后

    	asiosDemo(){
    		...请求
    		if(success) {
    			this.list = data //返回的数据 然后list 对组件进行渲染
    			this.$nextTick(() => {
    	           this.reportDatail()
    	         })
    		}
    	}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    methods:{
    	reportContent(index, name) {
    		console.log('曝光内容请求', index, name)
    	},
    	// 对dom 进行监听
    	reportDatail() {
    		// 容器dom
            const dom = document.querySelector('.monitor-list')
            setTimeout((_) => {
              this.$_reportContent(
                {
                  observeNodes: dom,
                  childNodes: dom.querySelectorAll('.content-task-item') // 监听子元素dom
                },
                // 回调函数 对返回的数据做埋点处理
                this.reportContent
              )
            }, 0)
         },
    	$_reportContent(options, callBackFn) {
    		// observeNodes 容器元素dom
    		// childNodes 被监听的曝光子元素dom
            const { observeNodes, childNodes } = options
            const io = new IntersectionObserver(
              function(entrier) {
                entrier.forEach((el, i) => {
                  if (el.isIntersecting) {
                  	// _index _name 是子元素dom 创建的值
                    let _index = el.target.getAttribute('data-index')
                    let _name = el.target.getAttribute('data-name')
                    callBackFn(_index, _name)
                    // 监听的元素进行解绑 
                    io.unobserve(el.target)
                  }
                })
              },
              {
                root: observeNodes,
                rootMargin: '0px'
              }
            )
            if (childNodes && childNodes.length !== 0) {
              childNodes.forEach((el) => {
                let _index = el.getAttribute('data-index') * 1
                // this.exposureList记录最新的曝光内容 之前曝光过的不再监听
                if (this.exposureList.includes(_index)) {
                  io.observe(el)
                }
              })
            }
          },
    }
    
    • 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
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
  • 相关阅读:
    MySQL主从配置-之GTID复制【第二篇】
    建立对象模型— 划分主题
    java基础知识三
    Linux下的基本指令(1)
    3.旅行家-完全背包
    基于注解管理bean(功能分析、注解和扫描、扫描组件、bean的id)
    Qt中的Resource
    java计算机毕业设计基于springboot+vue+elementUI的实验室管理系统(前后端分离)
    00后如何组织双十一大促看这一篇就够了! | 京东云技术团队
    传统企业数字化转型,处理好业务问题是关键
  • 原文地址:https://blog.csdn.net/qq_33477377/article/details/125540354