forked from Paul-Browne/lazyestload.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlazyload.js
51 lines (30 loc) · 1.22 KB
/
lazyload.js
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
! function() {
// wrapper, so we can call the function on both load and scroll events
function lazyload() {
// all the images with class lazyload
var images = document.querySelectorAll("img.lazyload");
var i = images.length;
// remove the event listener if there are no images with the class lazyload
!i && window.removeEventListener("scroll", lazyload);
// loop de loop
while (i--) {
var wH = window.innerHeight;
var offset = 100;
var yPosition = images[i].getBoundingClientRect().top - wH;
// if the top of the image is within 100px from the bottom of the viewport
if (yPosition <= offset) {
// replace the src with the data-src
images[i].src = images[i].getAttribute("data-src");
// wait until the new image is loaded
images[i].addEventListener('load', function() {
// remove the class lazyload
this.classList.remove("lazyload");
});
}
}
}
// run on load
lazyload();
// run on scroll event
window.addEventListener("scroll", lazyload);
}();