RemotionUI

Transition Clock Wipe

Clock wipe transition helper for TransitionSeries.

PrimitiveTransitionsAdvanced

transition-clock-wipe30fps · 960×540
Install
$ npx remotion-ui@latest add transition-clock-wipe

Exports transitionClockWipe() for circular clock-wipe scene transitions.

Agent notes

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

Import
@/remotion/primitives/transition-clock-wipe
  • Use when: scene transitions and composition pacing.
  • Customize: durationInFrames, width, height, 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 { transitionClockWipe } from "@/remotion/primitives/transition-clock-wipe"; <TransitionSeries.Transition {...transitionClockWipe({ width: 1920, height: 1080 })} />

API Reference

PropTypeDescription
durationInFramesnumberTransition overlap length.
width*numberComposition width.
height*numberComposition height.

Related