blob: 22f95eb0b1e65d7c20c91103811ad5677fd37274 (
plain)
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
|
// Lazy loading! Roll your own. Woot.
function loadImage(image) {
image.src = image.dataset.original;
}
function lazyLoad(elements) {
for (const item of elements) {
if (item.intersectionRatio > 0) {
observer.unobserve(item.target);
loadImage(item.target);
}
}
}
const observer = new IntersectionObserver(lazyLoad, {
rootMargin: '200px',
threshold: 1.0
});
for (const image of document.querySelectorAll('img.lazy')) {
observer.observe(image);
}
window.lazyLoadingExecuted = true;
|