RemotionUI

Confetti Burst

Frame-driven confetti burst overlay.

PrimitivePrimitivesAdvanced

confetti-burst30fps · 960×540
Install
$ npx remotion-ui@latest add confetti-burst

Deterministic confetti particles with gravity — seed the burst for repeatable renders.

Agent notes

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

Import
@/remotion/primitives/confetti-burst
  • Use when: frame-level motion primitives and reusable animation wrappers.
  • Customize: count, originX, originY, seed, 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 { ConfettiBurst } from "@/remotion/primitives/confetti-burst"; <ConfettiBurst originX={50} originY={40} seed="launch" />

API Reference

PropTypeDescription
countnumberParticle count.
originXnumberBurst origin X in percent.
originYnumberBurst origin Y in percent.
seedstringDeterministic random seed.

Related