Confetti Burst
Frame-driven confetti burst overlay.
PrimitivePrimitivesAdvanced
confetti-burst30fps · 960×540
Install
$ npx remotion-ui@latest add confetti-burstDeterministic 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-uinpm 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
| Prop | Type | Default | Description |
|---|---|---|---|
| count | number | 48 | Particle count. |
| originX | number | 50 | Burst origin X in percent. |
| originY | number | 42 | Burst origin Y in percent. |
| seed | string | "confetti" | Deterministic random seed. |