Each letter bounces in independently with spring-damped physics, then idles with a subtle hover-bounce — text that feels alive.
import JumpyTextFx from '@crazygl/hero-jumpytextfx';
export default function Page() {
return (
<JumpyTextFx
heading="happy little letters"
bounceHeight={10}
fontSize={96}
/>
);
}heading (each character animates separately).bounceHeight (idle hover px), bouncePeriod (idle period s), introHeight (intro drop px).textColor, fontSize, headingFontFamily (auto-loaded from Google Fonts), headingFontWeight.transparentBackground, bgColor.npm install @crazygl/hero-jumpytextfxThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import JumpyTextFX from '@crazygl/hero-jumpytextfx';
export default function Landing() {
return (
<JumpyTextFX />
);
}The wrapper renders static HTML on the server and only initialises the canvas after hydration, so search engines see your copy.
// app/page.tsx — works in SSR-first frameworks (Next, Remix, Astro, etc.)
'use client';
import JumpyTextFX from '@crazygl/hero-jumpytextfx';
export default function Page() {
return (
<section>
<JumpyTextFX
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}