jpskill.com
🛠️ 開発・MCP コミュニティ

vercel-react-view-transitions

Guide for implementing smooth, native-feeling animations using React's View Transition API (`<ViewTransition>` component, `addTransitionType`, and CSS view transition pseudo-elements). Use this skill whenever the user wants to add page transitions, animate route changes, create shared element animations, animate enter/exit of components, animate list reorder, implement directional (forward/back) navigation animations, or integrate view transitions in Next.js. Also use when the user mentions view transitions, `startViewTransition`, `ViewTransition`, transition types, or asks about animating between UI states in React without third-party animation libraries.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o vercel-react-view-transitions.zip https://jpskill.com/download/21004.zip && unzip -o vercel-react-view-transitions.zip && rm vercel-react-view-transitions.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21004.zip -OutFile "$d\vercel-react-view-transitions.zip"; Expand-Archive "$d\vercel-react-view-transitions.zip" -DestinationPath $d -Force; ri "$d\vercel-react-view-transitions.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して vercel-react-view-transitions.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → vercel-react-view-transitions フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
6

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

React View Transitions

ブラウザのネイティブな document.startViewTransition を使用して、UIの状態間をアニメーションさせます。<ViewTransition> で「何を」宣言し、startTransition / useDeferredValue / Suspense で「いつ」トリガーし、CSSクラスで「どのように」制御します。サポートされていないブラウザでは、アニメーションはスムーズにスキップされます。

アニメーションさせるタイミング

すべての <ViewTransition> は、空間的な関係性または連続性を伝える必要があります。それが何を伝えているのかを明確に説明できない場合は、追加しないでください。

このリストから、適用可能なすべてのパターンをこの順序で実装してください。

優先度 パターン 伝える内容
1 共有要素 (name) 「同じもの — より深く進む」
2 Suspense リビール 「データがロードされました」
3 リストの同一性 (アイテムごとの key) 「同じアイテム、新しい配置」
4 状態変化 (enter/exit) 「何かが現れた/消えた」
5 ルート変更 (レイアウトレベル) 「新しい場所へ移動する」

これは実装順序であり、「どれか一つを選ぶ」リストではありません。アプリに合うすべてのパターンを実装してください。アプリにユースケースがない場合にのみ、パターンをスキップしてください。

アニメーションスタイルの選択

コンテキスト アニメーション 理由
階層ナビゲーション (リスト → 詳細) タイプキー付き nav-forward / nav-back 空間的な深さを伝える
横方向ナビゲーション (タブ間) ベア <ViewTransition> (フェード) または default="none" 伝えるべき深さがない
Suspense リビール enter/exit 文字列プロパティ コンテンツの到着
再検証 / バックグラウンド更新 default="none" サイレント — アニメーションは不要

方向性のあるスライドは、階層ナビゲーション(リスト → 詳細)と順序付けられたシーケンス(前/次の写真、カルーセル、ページ分割された結果)のために予約してください。順序付けられたシーケンスの場合、方向は位置を伝えます。「次へ」は右からスライドし、「前へ」は左からスライドします。横方向/順序付けされていないナビゲーション(タブ間)では、方向性のあるスライドを使用しないでください。これは誤って空間的な深さを示唆します。


利用可能性

  • Next.js: react@canary をインストールしないでください — App Router はすでに内部で React canary をバンドルしています。ViewTransition はすぐに使用できます。npm ls react は安定版のようなバージョンを表示するかもしれませんが、これは想定内です。
  • Next.jsなし: react@canary react-dom@canary をインストールしてください(ViewTransition は安定版のReactには含まれていません)。
  • ブラウザサポート: Chromium 111+、Firefox 144+、Safari 18.2+。サポートされていないブラウザでは、スムーズに機能が低下します。

実装ワークフロー

既存のアプリにビュー遷移を追加する場合、references/implementation.md をステップバイステップで実行してください。 監査から始めてください — スキップしないでください。references/css-recipes.md からCSSレシピをグローバルスタイルシートにコピーしてください — 独自のアニメーションCSSは書かないでください。


コアコンセプト

<ViewTransition> コンポーネント

import { ViewTransition } from 'react';

<ViewTransition>
  <Component />
</ViewTransition>

Reactは一意の view-transition-name を自動的に割り当て、舞台裏で document.startViewTransition を呼び出します。ご自身で startViewTransition を呼び出す必要はありません。

アニメーションのトリガー

トリガー 発火するタイミング
enter Transition中に <ViewTransition> が最初に挿入されたとき
exit Transition中に <ViewTransition> が最初に削除されたとき
update <ViewTransition> 内のDOMミューテーション。ネストされたVTの場合、ミューテーションは最も内側のものに適用されます
share 名前付きVTがアンマウントされ、同じ name を持つ別のVTが同じTransition内でマウントされたとき

startTransitionuseDeferredValue、または Suspense のみがVTをアクティブにします。通常の setState はアニメーションしません。

重要な配置ルール

<ViewTransition> は、DOMノードの前に出現した場合にのみ、enter/exitをアクティブにします。

// 動作します
<ViewTransition enter="auto" exit="auto">
  <div>Content</div>
</ViewTransition>

// 壊れています — divがVTをラップしているため、enter/exitが抑制されます
<div>
  <ViewTransition enter="auto" exit="auto">
    <div>Content</div>
  </ViewTransition>
</div>

View Transitionクラスでのスタイリング

Props

値: "auto" (ブラウザのクロスフェード)、"none" (無効)、"class-name" (カスタムCSS)、またはタイプ固有のアニメーションの場合は { [type]: value }

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

default"none" の場合、明示的にリストされていない限り、すべてのトリガーはオフになります。

CSS疑似要素

  • ::view-transition-old(.class) — 離れるスナップショット
  • ::view-transition-new(.class) — 入ってくるスナップショット
  • ::view-transition-group(.class) — コンテナ
  • ::view-transition-image-pair(.class) — old + new のペア

すぐに使えるアニメーションレシピについては、references/css-recipes.md を参照してください。


トランジションタイプ

addTransitionType でトランジションにタグを付けることで、VTはコンテキストに基づいて異なるアニメーションを選択できます。複数のタイプをスタックするために複数回呼び出します — ツリー内の異なるVTが異なるタイプに反応します。

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

タイプをCSSクラスにマッピングするためにオブジェクトを渡します。enterexitおよび 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>

enterexit は対称である必要はありません。例えば、フェードインするが、方向性を持ってスライドアウトする、といったことが可能です。

<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 はオブジェクト内に default キーを必要とします。

複数のページを持つアプリの場合、タイプキー付きVTを再利用可能なラッパーに抽出します。

export function DirectionalTransition({ children }: { children: React.ReactNode }) {
  return (
    <ViewTransition
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

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 111+, 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>. 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 do not trigger view transitions (popstate is synchronous, incompatible with startViewTransition). Use router.push() with an explicit URL instead.

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.
  • 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.

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" Liberally

Without it, every VT fires the browser cross-fade on every transition — Suspense resolves, useDeferredValue updates, background revalidations. Always use default="none" and explicitly enable only desired triggers.

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 exits, nested VTs inside it do not fire their own enter/exit — only the outermost VT animates. Per-item staggered animations during page navigation are not possible today. See react#36135 for an experimental opt-in fix.


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

  • references/implementation.md — Step-by-step implementation workflow.
  • references/patterns.md — Patterns, animation timing, events API, troubleshooting.
  • references/css-recipes.md — Ready-to-use CSS animation recipes.
  • references/nextjs.md — Next.js App Router patterns and Server Component details.

Full Compiled Document

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

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。