Blur Reveal
A cinematic, 3D text reveal component. Characters or words sweep in from an angled, blurry 3D perspective, utilizing deep easing to create a heavy, dramatic reveal.
Last Modified:Aug 17, 2026
Install
CLI
blur-reveal
Or install a specific demo variant:
blur-reveal-headline-demo
Or install a specific demo variant:
blur-reveal-paragraph-demo
Manual
1. Install Dependencies
Dependencies
2. Add Source Code
Props
| Prop | Type | Default | Description |
|---|---|---|---|
text | string | Required | The full string of text to reveal. Supports newlines and formatting. |
as | React.ElementType | "p" | The HTML tag to render as. |
splitBy | "word" | "char" | "word" | Whether to split and animate by word or individual character. |
blur | boolean | true | Whether to apply a cinematic blur while revealing. |
duration | number | 1 | The duration of the reveal for each individual block. |
delay | number | 0 | Delay before the animation begins (in seconds). |
stagger | number | 0.03 | The stagger delay between each element revealing. |
ease | string | "power3.out" | GSAP easing function for the animation. |
viewportOnce | boolean | true | If true, plays once. If false, seamlessly reverses on scroll away. |
triggerStart | string | "top 90%" | Viewport threshold for when the animation should start. |