RemotionUI

Frosted Glass Wipe

A pane of frosted glass crosses the frame and leaves the next scene behind it.

PrimitiveTransitionsAdvanced

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

One panel of blurred glass travels across the frame, and the scene changes behind it. Because the panel covers the seam, the cut underneath can be hard — the outgoing scene holds whole until the glass has passed over it.

direction takes any of the four edges, panelWidth is the pane's width as a share of the frame, and frostColor tints the glass. The pane parks off-frame at both ends, so it never sits over a scene that is not moving.

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" | "from-top" | "from-bottom"Sweep direction.
frostColorstringTint of the glass panel.

Related