原生手动实现懒加载

本文最后更新于:2023年3月19日 晚上

重点是如何判断是否在视窗内

1
2
3
4
5
const viewPortHeight = window.innerHeight;
const offsetTop = el.offsetTop;
const scrollTop = document.documentElement.scrollTop;
const top = offsetTop - scrollTop;
return top <= viewPortHeight + 100;
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!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>
<body>
<div
style="width: 100vw;height: 3000px;display: flex;flex-direction: column;"
>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
<img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/><img
src="https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
data-url="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1600664088205&di=d9ba384447ddd9e91146950c1fe4f7f4&imgtype=0&src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20170823%2Fa248070c2ec342a7af7c94a4ed1ee3d6.png"
alt=""
/>
</div>
<script>
const isInViewport = (el) => {
const viewPortHeight = window.innerHeight;
const offsetTop = el.offsetTop;
const scrollTop = document.documentElement.scrollTop;
const top = offsetTop - scrollTop;
// console.log(viewPortHeight,offsetTop,scrollTop)
return top <= viewPortHeight + 100;
};

const throttle = (fn, delay) => {
let timer = null;
return (...args) => {
let context = this;
if (!timer) {
fn.apply(context, args);
timer = setTimeout(() => {
timer = null;
}, delay);
}
};
};

const handleScroll = () => {
if (document.documentElement.scrollTop === 0) return;
const imagesDom = document.getElementsByTagName("img");
// console.log(imagesDom)
for (const dom of imagesDom) {
if (isInViewport(dom)) {
dom.setAttribute("src", dom.getAttribute("data-url"));
} else {
dom.setAttribute(
"src",
"https://upload-images.jianshu.io/upload_images/10862849-ca1fcf2d02453a08.jpg?imageMogr2/auto-orient/strip|imageView2/2/w/240/format/webp"
);
}
}
};

window.onscroll = throttle(handleScroll, 500);
</script>
</body>
</html>

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!