ASD

Vercel React View Transitions

Guía para implementar animaciones nativas y fluidas con la View Transition API de React (`<ViewTransition>`, `addTransitionType`, pseudo-elementos CSS de transición).

Oficial

Reemplaza a: Librerías de animación de terceros

Estrellas
30k

en todo el repo

Actividad
75

0–100, la ruta de este skill

Actualizado
hace 21 días

último commit aquí

Commits
18

últimos 90 días

Contexto
3.5k tok

166 tok en reposo

Paquete
8 archivos

90 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add vercel-labs/agent-skills --skill react-view-transitions --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Implementa animaciones con la View Transition API de React usando `<ViewTransition>`, `addTransitionType` y pseudo-elementos CSS
  • Aplica patrones priorizados: shared element, Suspense reveal, list identity, state change y route change
  • Añade CSS de recipes.md al stylesheet global en lugar de escribir animaciones propias
  • Configura integración con Next.js (App Router, `next/link`, Server Components)

Úsalo cuando

  • Agregar transiciones de página o animar cambios de ruta
  • Crear animaciones de elemento compartido (shared element)
  • Animar entrada/salida de componentes o reordenamiento de listas
  • Implementar navegación direccional (adelante/atrás) o integrar view transitions en Next.js

No lo uses cuando

    Qué lo activa

    Di cualquiera de estas frases y el agente debería cargar este skill.

    • Quiero animar la transición entre la lista y el detalle de un ítem
    • Cómo hago un shared element transition con una imagen en Next.js
    • Necesito animar el reordenamiento de una lista con React
    • Agrega animaciones direccionales de adelante/atrás en mi navegación

    SKILL.md

    En inglés

    React View Transitions

    Animate between UI states using the browser's native document.startViewTransition. Declare what with <ViewTransition>, trigger when with startTransition / useDeferredValue / Suspense, control how with CSS classes. Unsupported browsers skip animations gracefully.

    When to Animate

    Every <ViewTransition> should communicate a spatial relationship or continuity. If you can't articulate what it communicates, don't add it.

    Implement all applicable patterns from this list, in this order:

    Priority Pattern What it communicates
    1 Shared element (name) "Same thing — going deeper"
    2 Suspense reveal "Data loaded"
    3 List identity (per-item key) "Same items, new arrangement"
    4 State change (enter/exit) "Something appeared/disappeared"
    5 Route change (layout-level) "Going to a new place"

    This is an implementation order, not a "pick one" list. Implement every pattern that fits the app. Only skip a pattern if the app has no use case for it.

    Choosing Animation Style

    Context Animation Why
    Hierarchical navigation (list → detail) Type-keyed nav-forward / nav-back Communicates spatial depth
    Lateral navigation (tab-to-tab) Bare <ViewTransition> (fade) or default="none" No depth to communicate
    Suspense reveal enter/exit string props Content arriving
    Revalidation / background refresh default="none" Silent — no animation needed

    Reserve directional slides for hierarchical navigation (list → detail) and ordered sequences (prev/next photo, carousel, paginated results). For ordered sequences, the direction communicates position: "next" slides from right, "previous" from left. Lateral/unordered navigation (tab-to-tab) should not use directional slides — it falsely implies spatial depth.


    Availability

    • Next.js: Do not install react@canary — the App Router already bundles React canary internally. ViewTransition works out of the box. npm ls react may show a stable-looking version; this is expected.
    • Without Next.js: Install react@canary react-dom@canary (ViewTransition is not in stable React).
    • Browser support: Chromium 125+ (React needs the v2 object form of startViewTransition), Firefox 144+, Safari 18.2+. Graceful degradation on unsupported browsers.

    Implementation Workflow

    When adding view transitions to an existing app, follow references/implementation.md step by step. Start with the audit — do not skip it. Copy the CSS recipes from references/css-recipes.md into the global stylesheet — do not write your own animation CSS.


    Core Concepts

    The <ViewTransition> Component

    import { ViewTransition } from 'react';
    
    <ViewTransition>
      <Component />
    </ViewTransition>
    

    React auto-assigns a unique view-transition-name and calls document.startViewTransition behind the scenes. Never call startViewTransition yourself.

    Animation Triggers

    Trigger When it fires
    enter <ViewTransition> first inserted during a Transition
    exit <ViewTransition> first removed during a Transition
    update DOM mutations inside a <ViewTransition>, or the boundary itself changing size/position due to an immediate sibling. With nested VTs, mutation applies to the innermost one
    share Named VT unmounts and another with same name mounts in the same Transition

    Only startTransition, useDeferredValue, or Suspense activate VTs. Regular setState does not animate.

    Critical Placement Rule

    <ViewTransition> only activates enter/exit if it appears before any DOM nodes:

    // Works
    <ViewTransition enter="auto" exit="auto">
      <div>Content</div>
    </ViewTransition>
    
    // Broken — div wraps the VT, suppressing enter/exit
    <div>
      <ViewTransition enter="auto" exit="auto">
        <div>Content</div>
      </ViewTransition>
    </div>
    

    Styling with View Transition Classes

    Props

    Values: "auto" (browser cross-fade), "none" (disabled), "class-name" (custom CSS), or { [type]: value } for type-specific animations.

    <ViewTransition default="none" enter="slide-in" exit="slide-out" share="morph" />
    

    If default is "none", all triggers are off unless explicitly listed.

    CSS Pseudo-Elements

    • ::view-transition-old(.class) — outgoing snapshot
    • ::view-transition-new(.class) — incoming snapshot
    • ::view-transition-group(.class) — container
    • ::view-transition-image-pair(.class) — old + new pair

    See references/css-recipes.md for ready-to-use animation recipes.


    Transition Types

    Tag transitions with addTransitionType so VTs can pick different animations based on context. Call it multiple times to stack types — different VTs in the tree react to different types:

    startTransition(() => {
      addTransitionType('nav-forward');
      addTransitionType('select-item');
      router.push('/detail/1');
    });
    

    Pass an object to map types to CSS classes. Works on enter, exit, and share:

    <ViewTransition
      enter={{ 'nav-forward': 'slide-from-right', 'nav-back': 'slide-from-left', default: 'none' }}
      exit={{ 'nav-forward': 'slide-to-left', 'nav-back': 'slide-to-right', default: 'none' }}
      share={{ 'nav-forward': 'morph-forward', 'nav-back': 'morph-back', default: 'morph' }}
      default="none"
    >
      <Page />
    </ViewTransition>
    

    enter and exit don't have to be symmetric. For example, fade in but slide out directionally:

    <ViewTransition
      enter={{ 'nav-forward': 'fade-in', 'nav-back': 'fade-in', default: 'none' }}
      exit={{ 'nav-forward': 'nav-forward', 'nav-back': 'nav-back', default: 'none' }}
      default="none"
    >
    

    TypeScript: ViewTransitionClassPerType requires a default key in the object.

    For apps with multiple pages, extract the type-keyed VT into a reusable wrapper:

    export function DirectionalTransition({ children }: { children: React.ReactNode }) {
      return (
        <ViewTransition
          enter={{ 'nav-forward': 'nav-forward', 'nav-back': 'nav-back', default: 'none' }}
          exit={{ 'nav-forward': 'nav-forward', 'nav-back': 'nav-back', default: 'none' }}
          default="none"
        >
          {children}
        </ViewTransition>
      );
    }
    

    router.back() and Browser Back Button

    router.back() and the browser's back/forward buttons carry no transition types, so type-keyed animations (directional slides) resolve to their default and don't play — untyped shared-element morphs still apply. For typed animations, use router.push() with an explicit URL.

    Types and Suspense

    Types are available during navigation but not during subsequent Suspense reveals (separate transitions, no type). Use type maps for page-level enter/exit; use simple string props for Suspense reveals.


    Shared Element Transitions

    Same name on two VTs — one unmounting, one mounting — creates a shared element morph:

    <ViewTransition name="hero-image">
      <img src="/thumb.jpg" onClick={() => startTransition(() => onSelect())} />
    </ViewTransition>
    
    // On the other view — same name
    <ViewTransition name="hero-image">
      <img src="/full.jpg" />
    </ViewTransition>
    
    • Only one VT with a given name can be mounted at a time — use unique names (photo-${id}). Watch for reusable components: if a component with a named VT is rendered in both a modal/popover and a page, both mount simultaneously and break the morph. Either make the name conditional (via a prop) or move the named VT out of the shared component into the specific consumer.
    • share takes precedence over enter/exit. Think through each navigation path: when no matching pair forms (e.g., the target page doesn't have the same name), enter/exit fires instead. Consider whether the element needs a fallback animation for those paths.
    • Two ways a wired-up morph silently never fires: (1) default="none" with no explicit share prop — share resolves to none; (2) type-keyed share where the navigation never adds the type — a plain link click resolves the map's default. Every link that should morph must add the type (transitionTypes on next/link, or addTransitionType).
    • Never use a fade-out exit on pages with shared morphs — use a directional slide instead.

    Common Patterns

    Enter/Exit

    {show && (
      <ViewTransition enter="fade-in" exit="fade-out"><Panel /></ViewTransition>
    )}
    

    List Reorder

    {items.map(item => (
      <ViewTransition key={item.id}><ItemCard item={item} /></ViewTransition>
    ))}
    

    Trigger inside startTransition. Avoid wrapper <div>s between list and VT.

    Layout Displacement Morph

    Only content inside an activated boundary animates position — everything else teleports to its new layout spot. Wrap the sibling content below a growing/shrinking list in a bare <ViewTransition> so it glides instead of jumping. See Layout Displacement Morph.

    Composing Shared Elements with List Identity

    Shared elements and list identity are independent concerns — don't confuse one for the other. When a list item contains a shared element (e.g., an image that morphs into a detail view), use two nested <ViewTransition> boundaries:

    {items.map(item => (
      <ViewTransition key={item.id}>                                      {/* list identity */}
        <Link href={`/items/${item.id}`}>
          <ViewTransition name={`item-image-${item.id}`} share="morph">   {/* shared element */}
            <Image src={item.image} />
          </ViewTransition>
          <p>{item.name}</p>
        </Link>
      </ViewTransition>
    ))}
    

    The outer VT handles list reorder/enter animations. The inner VT handles the cross-route shared element morph. Missing either layer means that animation silently doesn't happen.

    Force Re-Enter with key

    <ViewTransition key={searchParams.toString()} enter="slide-up" default="none">
      <ResultsGrid />
    </ViewTransition>
    

    Caution: If wrapping <Suspense>, changing key remounts the boundary and refetches.

    Suspense Fallback to Content

    Simple cross-fade:

    <ViewTransition>
      <Suspense fallback={<Skeleton />}><Content /></Suspense>
    </ViewTransition>
    

    Directional reveal:

    <Suspense fallback={<ViewTransition exit="slide-down"><Skeleton /></ViewTransition>}>
      <ViewTransition enter="slide-up" default="none"><Content /></ViewTransition>
    </Suspense>
    

    For more patterns, see references/patterns.md.


    How Multiple VTs Interact

    Every VT matching the trigger fires simultaneously in a single document.startViewTransition. VTs in different transitions (navigation vs later Suspense resolve) don't compete.

    Use default="none" Deliberately

    Without it, every VT fires the browser cross-fade on every transition — Suspense resolves, useDeferredValue updates, background revalidations. Use default="none" on named/shared elements and type-keyed page VTs.

    But it also turns off update (layout/reflow morphs) and share (a named pair with no explicit share prop never morphs). Keyed list items and displaced siblings want update — leave them bare or set update="auto".

    Two Patterns Coexist

    Pattern A — Directional slides: Type-keyed VT on each page, fires during navigation. Pattern B — Suspense reveals: Simple string props, fires when data loads (no type).

    They coexist because they fire at different moments. default="none" on both prevents cross-interference. Always pair enter with exit. Place directional VTs in page components, not layouts.

    Nested VT Limitation

    When a parent VT mounts/unmounts as one unit with nested VTs inside it, the nested ones do not fire their own enter/exit — only the outermost VT animates. (A child VT mounted inside a persistent parent VT fires enter/exit normally.) Per-item staggered animations during page navigation are not possible today; the experimental opt-in is the parentEnter/parentExit props (react#36690, experimental channel only).


    Next.js Integration

    For Next.js setup (experimental.viewTransition flag, transitionTypes prop on next/link, App Router patterns, Server Components), see references/nextjs.md.


    Accessibility

    Always add the reduced motion CSS from references/css-recipes.md to your global stylesheet.


    Reference Files

    Full Compiled Document

    For the complete guide with all reference files expanded: AGENTS.md

    Reproducido de vercel-labs/agent-skills bajo licencia MIT. Leer esta página en markdown.

    Archivos

    8 archivos en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

    Antes de instalar

    Fuera de Next.js hay que instalar `react@canary react-dom@canary`; en Next.js el App Router ya incluye React canary.

    Detalles

    Licencia
    MIT
    Recursos incluidos
    referencias
    Código fuente
    Ver SKILL.md

    Más de vercel-labs/agent-skills

    Este repo incluye 9 skills. Si instalas uno, normalmente ya tienes los demás.

    Para optimizar coste y rendimiento en proyectos Vercel desplegados (Next.js, SvelteKit, Nuxt, Astro limitado): recopila métricas, uso y config, investiga solo candidatos respaldados por métricas y produce recomendaciones verificadas.

    Costo de contexto al activarse
    4.3k tok
    Tamaño del paquete
    156 archivos
    Última actualización
    hace 2 meses
    Oficialdevops infraestructura

    Revisa documentos o prosa para verificar el cumplimiento de las Writing Guidelines; úsalo al pedir "review my docs", "check writing style" o "audit prose".

    Costo de contexto al activarse
    308 tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 2 meses
    Oficialredaccion contenido

    Despliega y gestiona proyectos en Vercel usando autenticación por token. Útil para usar Vercel CLI con access tokens en vez de login interactivo, p. ej. "deploy to vercel", "set up vercel".

    Costo de contexto al activarse
    2.6k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 3 meses
    Oficialdevops infraestructura

    Guía de optimización de rendimiento para React y Next.js de Vercel Engineering, con 70 reglas en 8 categorías priorizadas por impacto para refactorizar y generar código.

    Costo de contexto al activarse
    1.8k tok
    Tamaño del paquete
    76 archivos
    Última actualización
    hace 4 meses
    Oficialherramientas desarrollo

    Despliega aplicaciones y sitios web en Vercel. Úsalo cuando el usuario pida acciones de despliegue como 'deploy my app', 'push this live' o 'create a preview deployment'.

    Costo de contexto al activarse
    2.9k tok
    Tamaño del paquete
    4 archivos
    Última actualización
    hace 5 meses
    Oficialdevops infraestructura

    Patrones de composición de React que escalan. Úsalo al refactorizar props booleanas, construir librerías flexibles o diseñar APIs reutilizables; incluye cambios de las APIs de React 19.

    Costo de contexto al activarse
    722 tok
    Tamaño del paquete
    14 archivos
    Última actualización
    hace 6 meses
    Oficialherramientas desarrollo

    Skills relacionados

    Úsalo al empezar trabajo de feature que necesita aislamiento del workspace actual, o antes de ejecutar planes de implementación: asegura un workspace aislado vía herramientas nativas o fallback a git worktree.

    Costo de contexto al activarse
    1.7k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    el mes pasado
    herramientas desarrollo

    Úsala al crear nuevas skills, editar skills existentes o verificar que funcionan antes de desplegarlas.

    Costo de contexto al activarse
    6.6k tok
    Tamaño del paquete
    7 archivos
    Última actualización
    anteayer
    herramientas desarrollo

    Parte un plan, una spec o la conversación actual en tickets tracer-bullet, cada uno declarando sus aristas de bloqueo, publicados en el tracker configurado.

    Costo de contexto al activarse
    1.4k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 24 días
    herramientas desarrollo