AddThisFeature

Reduced Motion Support

Respect people who asked their device for less animation.

simple Accessibility & Internationalization

What it adds

An app-wide motion setting driven by the system preference, with an in-app override and legible non-animated alternatives.

What your agent is told to do

6
  1. 1

    Audit every animation in the app — transitions, parallax, auto-advancing carousels, looping loaders, shimmer, confetti, scroll effects, chart entry animations — and list which are decorative and which carry meaning.

  2. 2

    Route all motion through one place, so the preference is applied once rather than remembered per component.

  3. 3

    Default to the operating system's prefers-reduced-motion setting and let the user override it in settings, because the OS setting is often wrong for a shared or managed machine. Persist the override.

  4. 4

    Replace removed motion with something that still communicates the change: an instant state swap plus a colour or position change, a short cross-fade, or a message. The point is less motion, not less feedback.

  5. 5

    Apply the preference to third-party components, charts, embedded video, and animated images by disabling their animation options where the library exposes one.

  6. 6

    Do NOT simply set all animation durations to zero globally. Elements will teleport, panels will appear with no indication of where they came from, and the result disorients the same users the setting was meant to help.

Edge cases it handles

7
  • Reduced motion does not mean no opacity change — small cross-fades are generally safe and preserve continuity.
  • Autoplaying and looping media must not start under reduced motion, and needs a visible play control instead.
  • Loading indicators that rely on spin need a static or text alternative, or the user loses all sense of progress.
  • The preference can change while the app is open; listen for the change rather than reading it once at boot.
  • Scroll-triggered reveals must leave content visible when motion is off, not permanently hidden at zero opacity.
  • Toasts and drawers that slide in should still appear and disappear distinctly enough to be noticed without the slide.
  • Test with the setting on. Most reduced-motion bugs are elements that simply never become visible.

Definition of done

9
  • Every animation in the app is covered by the motion setting.
  • The setting defaults to prefers-reduced-motion and can be overridden in-app, with the choice persisted.
  • A change in the system preference is picked up without a reload.
  • Removed animations are replaced by a legible alternative, not by an abrupt jump.
  • No content is left invisible or unreachable when motion is disabled.
  • Autoplaying and looping media do not start under reduced motion.
  • Third-party components and charts honour the setting where they allow it.
  • The feature matches the existing design system.
  • No existing functionality is broken.

Related features

How it works

  1. 1

    Copy the link

    Grab the Markdown instruction URL for this feature.

  2. 2

    Give it to your AI

    Paste it into Claude Code, Cursor, v0, Lovable — whatever you build with.

  3. 3

    It inspects, then implements

    Your agent reads your existing app first, then adds the feature to fit it.

Works with your stack

These instructions are written to adapt. They tell the agent to detect your framework, match your existing design system, and reuse what you already have — rather than assuming a particular stack.

Need it tighter than that? Customize the feature and tell it exactly what you're running.