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