Study Journal

Entry 3 — View Transitions API

I integrated the View Transition API into this Astro site to enable smoother page navigation animations.

This API allows cross-page transitions in static sites, which was previously impossible.

The transition is triggered by:

document.startViewTransition(() => {
  window.location.href = link.href;
});