RemotionUI
Primitives

Blur In

Blur in with fade animation.

Primitiveatoms

Install
npx remotion-ui@latest add blur-in

Blur in with fade animation.

Live preview

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add blur-in

Import after install

@/remotion/primitives/blur-in
  • Use when: frame-level motion primitives and reusable animation wrappers.
  • Customize: durationInFrames, delayInFrames, maxBlur, plus copied source for timing, layout, colors, and typography.
  • Rule: do not import this component from the remotion-ui npm package; it is copied into your project.

Usage

import { BlurIn } from "@/remotion/primitives/blur-in";

<BlurIn maxBlur={12}>
  <h1>Focus reveal</h1>
</BlurIn>

API Reference

PropTypeDescription
children*ReactNodeContent to animate.
durationInFramesnumberLength of the enter animation in frames.
delayInFramesnumberFrames to wait before the animation starts.
maxBlurnumberMaximum blur radius in pixels at frame 0.

Related