RemotionUI

Frosted Glass Wipe

Progressive frosted glass panel sweep for TransitionSeries.

PrimitiveTransitionsAdvanced

frosted-glass-wipe30fps · 960×540
Install
$ npx remotion-ui@latest add frosted-glass-wipe

Exports transitionFrostedGlassWipe() and getTransitionFrostedGlassWipeDuration() 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/frosted-glass-wipe
  • Use when: scene transitions and composition pacing.
  • Customize: durationInFrames, blur, panelWidth, direction, 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 { transitionFrostedGlassWipe } from "@/remotion/primitives/frosted-glass-wipe"; <TransitionSeries.Transition {...transitionFrostedGlassWipe({ blur: 20 })} />

API Reference

PropTypeDescription
durationInFramesnumberTransition overlap length.
blurnumberFrost panel blur radius.
panelWidthnumberSweep panel width as fraction of frame.
direction"from-left" | "from-right"Sweep direction.

Related