Skip to content

Instantly share code, notes, and snippets.

@ampersanda
Created December 1, 2019 14:30
Show Gist options
  • Save ampersanda/8520a5c77e046518d31b20e3df0e1527 to your computer and use it in GitHub Desktop.
Save ampersanda/8520a5c77e046518d31b20e3df0e1527 to your computer and use it in GitHub Desktop.
Simple and Modern LazyLoad
// https://twitter.com/samccone/status/1200967148580921344?s=20
this.obs = new IntersectionObserver(onHit, {
rootMargin: '0px',
threshold: 0.2
});
this.obs.observe(elms);
onHit(entries) {
for (const e of entries) {
if (e.isIntersecting) { // GO }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment