reelcn
Text

Text

Blur In

Headline whose words fade up out of a soft blur, one after another.

Install

Usage

<Center>
  <BlurIn text="Quietly, then all at once" />
</Center>

Props

NameTypeDefaultDescription
font?"mono" | "heading" | "body"
delay?numberFrames to wait before entering.
duration?numberEnter duration in frames. Defaults to 0.6s.
exit?number | booleanExit at the end of the parent `<Sequence>`. `false` keeps it on screen, a number sets the exit length in frames.
motion?MotionPresetOverride the theme's motion personality.
stagger?numberFrames between units. Defaults at 30fps: char 1, word 2, line 5.
style?CSSProperties
className?string
textstring
split?"word" | "char" | "line"What staggers in. `line` splits on "\n".
size?numberFont size in design units.
weight?number
color?string
accentColor?string
accentWords?string[]Words painted in the accent color. Case and punctuation are ignored.
align?"left" | "right" | "center"

Use

  • Calm, premium intros and brand statements
  • Titles laid over footage or gradients

Avoid

  • Punchy, high-energy hooks — use pop-in

Dependencies

Source

registry/items/blur-in.tsx
/**
 * @title Blur In
 * @category text
 * @description Headline whose words fade up out of a soft blur, one after another.
 * @duration 30
 * @use Calm, premium intros and brand statements
 * @use Titles laid over footage or gradients
 * @avoid Punchy, high-energy hooks — use `pop-in`
 * @tags blur, focus, soft, headline
 * @preset text-reveal
 * @example
 * <Center>
 *   <BlurIn text="Quietly, then all at once" />
 * </Center>
 */
import { TextReveal, type TextRevealProps } from "./text-reveal";

export type BlurInProps = Omit<TextRevealProps, "effect">;

export function BlurIn(props: BlurInProps) {
  return <TextReveal {...props} effect="blur" />;
}

Related