-
Notifications
You must be signed in to change notification settings - Fork 0
/
懒加载.html
105 lines (99 loc) · 2.63 KB
/
懒加载.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
img {
width: 200px;
height: 200px;
margin: 160px 60px;
display: block;
}
</style>
<body>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<img data-src="./img/1.jpg" src="">
<img data-src="./img/2.jpg" src="">
<img data-src="./img/3.jpg" src="">
<img data-src="./img/6.jpg" src="">
<img data-src="./img/5.jpg" src="">
</body>
<script src="./函数防抖.js"></script>
<script>
let img = document.querySelectorAll('img')
// function s() {
// img.forEach((e) => {
// let top = e.getBoundingClientRect().top
// if (top < window.innerHeight) {
// let src = e.getAttribute('data-src')
// e.setAttribute('src', src)
// }
// })
// }
// let lazy = devounce2(s, 500)
// window.onscroll = lazy
function callback() {
const cb = (entries) => {
entries.forEach((a) => {
if (a.isIntersecting) {
//进入视口
/*
- boundingClientRect: 被观察元素的矩形区域信息。
- intersectionRatio: 被观察元素的可见部分与整个元素的比例。
- intersectionRect: 可见部分的矩形区域信息。
- isIntersecting: 布尔值,表示元素是否与根元素相交。
- rootBounds: 根元素的矩形区域信息。
- target: 被观察的目标元素。
- time: 触发回调的时间戳。
*/
const imge = a.target
let src = imge.getAttribute('data-src')
imge.setAttribute('src', src)
observer.unobserve(imge)
}
})
}
const observer = new IntersectionObserver(cb, {
root: null, //具体容器,如果null则默认整个窗口
rootMargin: '20px',
threshold: 0//交叉比例
});
img.forEach((e) => {
observer.observe(e)
})
}
callback()
</script>
</html>