use-intersection
Detects if given element is visible in the viewport or other element with IntersectionObserver
Import
Source
Docs
Package
Usage
use-intersection
returns information about the intersection
of a given element with its scroll container or body element with Intersection Observer API:
Obscured
API
The hook accepts IntersectionObserver
's options as its only optional argument:
The hook returns a ref
function that should be passed to the observed element, and the latest entry, as returned by IntersectionObserver
's callback.
See Intersection Observer API documentation to learn everything about options.
On the first render (as well as during SSR), or when no element is being observed, the entry is null
.