巧妙使用js 巧妙使用js IntersectionObserver实现dom懒加载实现dom懒加载

效果

请添加图片描述

源码

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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>IntersectionObserver</title>
</head>
<body style="text-align: center">
<div id="container"></div>
<div id="load">加载中...</div>
</body>
<script>
const containerDOM = document.querySelector('#container');
const loadingDOM = document.querySelector('#load');
let index = 0;

const loading = (count) => {
[...Array(count).keys()].forEach((key) => {
const h1DOM = document.createElement('h1');
h1DOM.innerHTML = `${key + index}`;
containerDOM.appendChild(h1DOM)
})
index += count;
}

const observer = new IntersectionObserver((entries) => {
entries.forEach(entrie => {
if (entrie.isIntersecting) {
loading(25);
}
})
});
observer.observe(loadingDOM)
</script>
</html>

巧妙使用js 巧妙使用js IntersectionObserver实现dom懒加载实现dom懒加载
https://github.com/chergn/chergn.github.io/6ce9f54d1b2d/
作者
全易
发布于
2024年3月28日
许可协议