Last active
May 20, 2021 17:55
-
-
Save deanhume/1da60330fa8f6dc3d0f4885168a48f9e to your computer and use it in GitHub Desktop.
Intersection Observer - Image lazy load
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get all of the images that are marked up to lazy load | |
const images = document.querySelectorAll('.js-lazy-image'); | |
const config = { | |
// If the image gets within 50px in the Y axis, start the download. | |
rootMargin: '50px 0px', | |
threshold: 0.01 | |
}; | |
// The observer for the images on the page | |
let observer = new IntersectionObserver(onIntersection, config); | |
images.forEach(image => { | |
observer.observe(image); | |
}); | |
line's missing
let observer = new IntersectionObserver(onIntersection, config);
function onIntersection(images, observer) {
images.forEach(image => {
observer.observe(image);
});
}
Looking at the api, it should be:
let observer = new IntersectionObserver(onIntersection, config);
images.forEach(image => {
observer.observe(image);
});
Good spot all - updated!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
+1