CrazyGLCrazyGLHomeExploreGitHubBrowse heroesLoading hero…← Back to gallery@crazygl/blurrytextfx

Blurry Text FX

Each word starts heavily blurred and resolves into focus on a stagger. Plays once on load or loops with a configurable hold.

ReactFont#blur#reveal#typography

Usage

import BlurryTextFx from '@crazygl/hero-blurrytextfx';

export default function Hero() {
  return (
    <BlurryTextFx
      heading="Out of the haze, into focus."
      trigger="loop"
      startBlur={22}
    />
  );
}

Customise

  • Contentheading, optional subheading.
  • Triggertrigger: load (one-shot entrance) or loop (replays after a hold).
  • RevealstartBlur (px), perWordDuration (ms), stagger (ms between words), loopAfter (hold seconds before replay, loop only).
  • TypographytextColor, subColor, fontSize, headingFontFamily, headingFontWeight.
  • BackdroptransparentBackground, bgColor.

Best for

  • SaaS and startup landing pages that need a refined headline entrance.
  • Editorial / magazine-style hero sections.
  • Product launch and announcement pages where the message should "arrive."
01 · Install the package

One command, zero config.

npm install @crazygl/hero-blurrytextfx
02 · Render the component

Import once, drop it in.

The component takes the same props you see in the live customizer on the right — every default ships poster-quality.

hero.tsx
import BlurryTextFX from '@crazygl/hero-blurrytextfx';

export default function Landing() {
  return (
    <BlurryTextFX />
  );
}
03 · Use it in a page

SSR-safe by default.

The wrapper renders static HTML on the server and only initialises the canvas after hydration, so search engines see your copy.

page.tsx
// app/page.tsx — works in SSR-first frameworks (Next, Remix, Astro, etc.)
'use client';

import BlurryTextFX from '@crazygl/hero-blurrytextfx';

export default function Page() {
  return (
    <section>
      <BlurryTextFX
        heading="Say hi."
        subheading="Your new hero."
      />
      <article>
        <h2>Welcome</h2>
        <p>Your content keeps its own voice below the hero.</p>
      </article>
    </section>
  );
}
You might also like

Similar heroes

Hover Text Reveal

A row of phrases where hovering one expands a stagger-typed paragraph beside it — the kind of FAQ heading-list interaction premium SaaS sites use.

Text Reveal

Heading wiped in from a single direction via a hard clip-path mask, with a small per-letter delay — the foundational reveal everyone needs.

Text Split Reveal

Heading splits into two halves that slide apart to reveal a secondary line between them — the curtain-pull pattern.

Text Hover Reveal

Each item shows a default heading; on hover the heading scrolls up and a secondary line scrolls in from below — list-of-services interaction.

Mask Text Reveal

Text revealed as a moving circular mask sweeps across — the headline appears only where the image-shaped mask uncovers it.

Word Blur

Heading that comes in word-by-word — each word lifts out of a deep blur and slides into focus on a small stagger.
Live customizer

Blurry Text FX

Animation triggerStart blur22pxPer-word duration (ms)700msStagger (ms)120msLoop hold (s)3.5sHold time before the choreography replays. Only used when trigger is Loop.Text colourSubheading colourFont size92pxFontWeight700Transparent backgroundBackground
CrazyGL · crazygl.comProgrammable hero sections for real websites.