Primitives
Fade Out
Opacity fade-out animation primitive.
Primitiveatoms
Install
npx remotion-ui@latest add fade-outOpacity fade-out animation primitive.
Live preview
AI usage
Install first, then import the copied source component locally.
Install
npx remotion-ui@latest add fade-outImport after install
@/remotion/primitives/fade-out- Use when: frame-level motion primitives and reusable animation wrappers.
- Customize: durationInFrames, delayInFrames, plus copied source for timing, layout, colors, and typography.
- Rule: do not import this component from the
remotion-uinpm package; it is copied into your project.
Usage
import { FadeOut } from "@/remotion/primitives/fade-out";
<FadeOut durationInFrames={24}>
<div>Goodbye</div>
</FadeOut>API Reference
| Prop | Type | Default | Description |
|---|---|---|---|
| children* | ReactNode | — | Content to animate. |
| durationInFrames | number | 30 | Length of the enter animation in frames. |
| delayInFrames | number | 0 | Frames to wait before the animation starts. |