— Web, Web API, IntersectionObserver — 1 min read
root
- Visibility viewport로 사용할 target이고 반드시 target의 조상(부모)이어야 한다. 지정하지 않거나 null인 경우 (Default: Browser viewport)rootMargin
- root의 margin이고 CSS Margin과 같은 방향(top, right, bottom, left)으로 설정((px, 백분율) 가능하다. (Default: 0)threshold
- number | number[], 타겟의 Visibility percent. (Default: 0)1const applyButtonMargin = "-168px";2const intersection = useIntersection(intersectionRef, {3 root: null,4 rootMargin: applyButtonMargin,5 threshold: 0,6});