Blur Text
Text that reveals itself with a blur effect animation.
Preview
RevealAnimation
Installation
bash
npx auralix-ui add blur-textUsage
Basic Blur Text
tsx
import { BlurText } from "@/components/ui/BlurText";
<BlurText text="Hello World" />With Delay
tsx
<BlurText text="Content appears later" delay={500} wordDelay={100} />Props
| Name | Type | Default | Description |
|---|---|---|---|
text | string | - | The text to display. |
delay | number | 0 | Delay before starting animation (ms). |
wordDelay | number | 50 | Delay between each word (ms). |
On this page