cristinafsanz
12/4/2019 - 11:37 AM

Lazy loading

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 } }