码迷,mamicode.com
首页 > Web开发 > 详细

如何利用JS检查元素是否在视口内

时间:2021-06-28 18:32:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:alt   www   pos   style   img   log   窗口   blog   函数   

前言

分享两个监测元素是否在视口内的方法

 

1. 位置计算

使用 Element.getBoundingClientRect() 方法返回元素相对于视口的位置

const isElementVisible = (el) => {
const rect = el.getBoundingClientRect();
};

获取浏览器窗口的宽高

const isElementVisible = (el) => {
const rect = el.getBoundingClientRect();
const vWidth = window.innerWidth || document.documentElement.clientWidth;
const vHeight = window.innerHeight || document.documentElement.clientHeight;
};

判断元素是否在视口内,如图所示

技术图片

const isElementVisible = (el) => {
const rect = el.getBoundingClientRect()
const vWidth = window.innerWidth || document.documentElement.clientWidth
const vHeight = window.innerHeight || document.documentElement.clientHeight


if (
rect.right < 0 ||
rect.bottom < 0 ||
rect.left > vWidth ||
rect.top > vHeight
) {
return false
}

return true
}

getBoundingClientRect 方法会使浏览器发生回流和重绘,性能消耗稍大,但兼容性比 Intersection Observer 要好。

https://www.98891.com/article-81-1.html

2. Intersection Observer

Intersection Observer API提供了一种异步检测目标元素与祖先元素或 viewport 相交情况变化的方法。在目标元素与视口或者其他指定元素发生交集时和触发配置的回调函数。

// 获取要监测的元素
const boxes = document.querySelectorAll(‘.box‘)

// 创建观察者,配置回调函数
// 通过 isIntersecting 属性判断元素与视口是否相交
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach((entry) => {
console.log(
entry.target,
entry.isIntersecting ? "visible" : "invisible"
);
});
})

boxes.forEach((box) => {
observer.observe(box);
});

如何利用JS检查元素是否在视口内

标签:alt   www   pos   style   img   log   窗口   blog   函数   

原文地址:https://www.cnblogs.com/qianxiaox/p/14933960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!