RemotionUI
Cuts

Transition Clock Wipe

Clock wipe transition helper for TransitionSeries.

PrimitivecutsAdvanced

Install
npx remotion-ui@latest add transition-clock-wipe

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

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add transition-clock-wipe

Import after install

@/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

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