Back to Dictionary
Creative Motion
●●●Requires Setup
Use sparingly

Interactive 3D Card Stack

Use depth to clarify grouping, not to hide information.

Use

Portfolio grids, case studies, template galleries, product feature sets, pricing/plan comparison highlights.

Avoid

Avoid when users need quick comparison across many items, when cards contain dense text, or when hover/tilt makes hit targets unstable.

Safer Alternative

Hover Lift Effect

Risk Level

High attention

Timing

Keep loops slow and ambient; use one-shot reveals when the motion is introducing content or explaining a process.

Easing

Use restrained ease-out/ease-in-out curves for UI-adjacent motion; reserve continuous linear motion for flows, orbits, and ambient fields.

Risk

performance sensitiveaccessibility sensitiveoverdesigned

Live Demo

Hover or click a card

What It Is

Layered cards use depth, hover tilt, drag, or scroll movement to show a group of features, templates, examples, or portfolio items. It adds spatial browsing while preserving scannability.

Decision Guidance

Use depth to clarify grouping, not to hide information.

Best For

Portfolio grids, case studies, template galleries, product feature sets, pricing/plan comparison highlights.

Avoid When

Avoid when users need quick comparison across many items, when cards contain dense text, or when hover/tilt makes hit targets unstable.

Timing

Keep loops slow and ambient; use one-shot reveals when the motion is introducing content or explaining a process.

Easing

Use restrained ease-out/ease-in-out curves for UI-adjacent motion; reserve continuous linear motion for flows, orbits, and ambient fields.

Risk Tags

performance sensitiveaccessibility sensitiveoverdesigned

When to Use

  • Product contexts: Portfolio grids, case studies, template galleries, product feature sets, pricing/plan comparison highlights.
  • Choose it when the product intent matches 3D Product Showcase rather than generic decoration.
  • Use depth to clarify grouping, not to hide information.

When NOT to Use

  • Avoid when users need quick comparison across many items, when cards contain dense text, or when hover/tilt makes hit targets unstable.

Configuration Tips

  • 01Technical fit: CSS transforms for light stacks; React Three Fiber only when real depth, lighting, or camera movement is necessary.
  • 02Performance: Prefer transform and opacity. Limit active cards, avoid expensive shadows or blur, and disable depth effects on low-end devices.
  • 03Accessibility: Keep keyboard focus order linear. Do not move focused elements away from the pointer or screen-reader order.
  • 04Reduced motion: Static layered cards with a simple focus outline or instant selected state.

You've Seen It In

Motion Dict Creative Motion Pack

AI Implementation Prompts

Move from a fast scaffold to production details, then tune timing and edge states.

Design a Interactive 3D Card Stack for this product context. First explain the product intent, when not to use it, performance budget, accessibility constraints, and reduced-motion fallback. Then propose the simplest implementation family that can express the idea safely.

Code Example (Tailwind CSS)

A focused implementation sketch you can adapt to your product state.

export function MotionDecisionChecklist() {
  const steps = [
    'Confirm product intent',
    'Choose the simplest implementation family',
    'Set performance caps and mobile fallback',
    'Add reduced-motion behavior',
    'Verify accessibility and readable content',
  ];

  return steps;
}