Skip to content
← Writing
On this page
Next.jsMarch 10, 2026· 1 min read

View Transitions in Next.js, Without the Magic

A grounded look at the View Transitions API in the App Router: what it does, where it shines, and how to keep it accessible.

The View Transitions API turns a jarring navigation into a continuous one. In the App Router you opt in with an experimental flag and React's <ViewTransition> component — but the interesting part is restraint.

Treat it as progressive enhancement

Browsers without support simply navigate as before. Nothing breaks; the experience just lacks the flourish. Build for the baseline first.

Morph what's meaningful

The best transitions move a shared element — a project card growing into its detail page. Tie the two with a transition name and let the browser interpolate.

Honor reduced motion

A "scene cut" is still motion. When someone prefers reduced motion, collapse the transition to a quick cross-fade or none at all.