RemotionUI

Blur Reveal

Blur and opacity reveal transition for TransitionSeries.

PrimitiveTransitionsAdvanced

blur-reveal30fps · 960×540
Install
$ npx remotion-ui@latest add blur-reveal

Exports transitionBlurReveal() and getTransitionBlurRevealDuration() for use with TransitionSeries.Transition.

Requires @remotion/transitions. Run npx remotion add @remotion/transitions if not already installed.

Agent notes

Install first, then import the copied source component locally. AI guide →

Import
@/remotion/primitives/blur-reveal
  • Use when: scene transitions and composition pacing.
  • Customize: durationInFrames, maxBlur, variant, 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

Example
import { transitionBlurReveal } from "@/remotion/primitives/blur-reveal"; <TransitionSeries.Transition {...transitionBlurReveal({ maxBlur: 24 })} />

API Reference

PropTypeDescription
durationInFramesnumberTransition overlap length.
maxBlurnumberPeak blur radius in px.
variant"linear" | "spring" | "editorial"Timing curve.

Related