Reusables

Use InView

A React hook for detecting when elements enter the viewport

Installation

npx shadcn@latest add "https://reusables.vercel.app/r/use-inview"

Usage

The hook provides viewport intersection detection with react observer.

import useInViewState from "@/hooks/use-inview"
const { ref, isInView } = useInViewState({
  triggerOnce: true,
  threshold: 0.5,
})

Example

Scroll to see me

Scroll to see me

Scroll to see me

Reference

Options

PropTypeDefault
triggerOnce
boolean
true
threshold
number
0.1

Return Values

PropTypeDefault
ref
(node: Element | null) => void
-
isInView
boolean
-
Edit on GitHub

Last updated on

On this page