Words cycle through, each one wiping in and out as 40 horizontal stripes that scale staggered across a WebGL surface. Optional per-fragment blur, distortion or ripple effect.
import KineticTextMotion from '@crazygl/hero-kinetic-text-motion';
export default function Hero() {
return (
<KineticTextMotion
words={`IMAGINE\nANIMATE\nLAUNCH`}
animationSpeed={0.8}
effectType="ripple"
/>
);
}words (one per line, cycled in order).animationSpeed (transition duration) and intervalTime (hold between words).effectType (none / blur / distortion / ripple) and effectIntensity.textColor, textFontSize, headingFontFamily, headingFontWeight, headingFontStyle.transparentBackground or a solid bgColor.npm install @crazygl/hero-kinetic-text-motionThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import KineticTextMotion from '@crazygl/hero-kinetic-text-motion';
export default function Landing() {
return (
<KineticTextMotion />
);
}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 KineticTextMotion from '@crazygl/hero-kinetic-text-motion';
export default function Page() {
return (
<section>
<KineticTextMotion
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}