TweenLabs LogoTweenLabs
TweenLabs/Components/Source Code

Kinetic Text Code

Endpoint: /06-kinetic-typography

Interactive kinetic text sandbox showcasing liquid wave, character scramble, and magnetic motion.

📦 GSAP: ^3.15.0
📦 @gsap/react: ^2.1.2
⚙️ ScrollTrigger: ❌ Not Used
page.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
"use client";

import { useGSAP } from "@gsap/react";
import gsap from "gsap";
import { useRef, useState } from "react";

gsap.registerPlugin(useGSAP);

export default function KineticTypographyPage() {
  const containerRef = useRef<HTMLDivElement>(null);
  const textContainerRef = useRef<HTMLDivElement>(null);
  const [textInput, setTextInput] = useState("KINETIC TYPE");
  const [mode, setMode] = useState<"wave" | "scramble" | "magnetic" | "liquid">(
    "wave",
  );
  const [speed, setSpeed] = useState(1); // multiplier
  const [triggerKey, setTriggerKey] = useState(0);

  // Animations run based on input state and mode changes
  useGSAP(
    () => {
      // 1. Reset all characters to clean state before starting a new animation
      gsap.set(".kinetic-char", { clearProps: "all" });

      if (mode === "wave") {
        // Staggered sine wave bounce + rotation
        gsap.fromTo(
          ".kinetic-char",
          {
            y: 20,
            rotate: -8,
            scale: 0.9,
          },
          {
            y: -20,
            rotate: 8,
            scale: 1.1,
            duration: 0.6 / speed,
            repeat: -1,
            yoyo: true,
            ease: "sine.inOut",
            stagger: {
              each: 0.08,
              from: "start",
            },
          },
        );
      } else if (mode === "scramble") {
        // Glitchy letter decoder effect
        const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%&*_+=?";
        const textArray = textInput.split("");

        textArray.forEach((originalChar, index) => {
          if (originalChar === " ") return;
          const el = containerRef.current?.querySelector(`.char-${index}`);
          if (!el) return;

          let scrambleCount = 0;
          const maxScrambles = 8 + Math.floor(Math.random() * 8) + index;
          const intervalTime = 40 / speed;

          const interval = setInterval(() => {
            if (scrambleCount >= maxScrambles) {
              el.textContent = originalChar;
              clearInterval(interval);
            } else {
              el.textContent = chars[Math.floor(Math.random() * chars.length)];
              scrambleCount++;
            }
          }, intervalTime);
        });
      } else if (mode === "liquid") {
        // SVG Turbulence Distortion Loop
        const tl = gsap.timeline({ repeat: -1, yoyo: true });

        tl.to("#displacement", {
          attr: { scale: 45 },
          duration: 1.8 / speed,
          ease: "power1.inOut",
        }).to(
          "#turbulence",
          {
            attr: { baseFrequency: "0.03 0.09" },
            duration: 1.8 / speed,
            ease: "power1.inOut",
          },
          "<",
        );
      }
    },
    { scope: containerRef, dependencies: [textInput, mode, speed, triggerKey] },
  );

  // Mode 3: Magnetic hover behavior runs on mousemove over the container
  useGSAP(
    (context, contextSafe) => {
      if (mode !== "magnetic" || !contextSafe) return;

      const chars = textContainerRef.current?.querySelectorAll(".kinetic-char");
      if (!chars || chars.length === 0) return;

      const onMouseMove = contextSafe((e: MouseEvent) => {
        const rect = textContainerRef.current?.getBoundingClientRect();
        if (!rect) return;

        const mouseX = e.clientX - rect.left;
        const mouseY = e.clientY - rect.top;

        chars.forEach((char) => {
          const charEl = char as HTMLElement;
          const charRect = charEl.getBoundingClientRect();
          const charX = charRect.left + charRect.width / 2 - rect.left;
          const charY = charRect.top + charRect.height / 2 - rect.top;

          const deltaX = mouseX - charX;
          const deltaY = mouseY - charY;
          const distance = Math.sqrt(deltaX * deltaX + deltaY * deltaY);

          const maxDistance = 140;

          if (distance < maxDistance) {
            const force = (maxDistance - distance) / maxDistance; // 0 to 1

            // Push letters away from mouse with a slight tilt rotation
            const moveX = -(deltaX / distance) * force * 30;
            const moveY = -(deltaY / distance) * force * 30;
            const angle = -(deltaX / distance) * force * 25;

            gsap.to(charEl, {
              x: moveX,
              y: moveY,
              rotate: angle,
              scale: 1 + force * 0.25,
              color: "#6758a5", // Turn purple when close to mouse
              duration: 0.2,
              ease: "power2.out",
              overwrite: "auto",
            });
          } else {
            // Reset
            gsap.to(charEl, {
              x: 0,
              y: 0,
              rotate: 0,
              scale: 1,
              color: "#2a2a2a",
              duration: 0.4,
              ease: "power2.out",
              overwrite: "auto",
            });
          }
        });
      });

      const onMouseLeave = contextSafe(() => {
        chars.forEach((char) => {
          gsap.to(char, {
            x: 0,
            y: 0,
            rotate: 0,
            scale: 1,
            color: "#2a2a2a",
            duration: 0.5,
            ease: "power2.out",
            overwrite: "auto",
          });
        });
      });

      const container = textContainerRef.current;
      container?.addEventListener("mousemove", onMouseMove);
      container?.addEventListener("mouseleave", onMouseLeave);

      return () => {
        container?.removeEventListener("mousemove", onMouseMove);
        container?.removeEventListener("mouseleave", onMouseLeave);
      };
    },
    { scope: containerRef, dependencies: [mode, textInput] },
  );

  const triggerReplay = () => {
    setTriggerKey((prev) => prev + 1);
  };

  const loadPreset = (phrase: string) => {
    setTextInput(phrase.toUpperCase());
    triggerReplay();
  };

  return (
    <div
      className="relative min-h-screen bg-[#f0eadf] text-[#2a2a2a] flex flex-col items-center justify-center p-4 selection:bg-wtf-yellow selection:text-black"
      ref={containerRef}
    >
      {/* SVG Liquid Filter Definition */}
      <svg className="hidden">
        <defs>
          <filter id="liquid-filter">
            <feTurbulence
              id="turbulence"
              type="fractalNoise"
              baseFrequency="0.01 0.04"
              numOctaves="2"
              result="noise"
            />
            <feDisplacementMap
              id="displacement"
              in="SourceGraphic"
              in2="noise"
              scale="0"
              xChannelSelector="R"
              yChannelSelector="G"
            />
          </filter>
        </defs>
      </svg>

      <div className="absolute inset-0 dot-grid pointer-events-none z-0" />

      <div className="z-10 w-full max-w-4xl brutalist-card p-6 md:p-8 bg-white flex flex-col gap-8 text-center relative overflow-hidden">
        {/* Badge header */}
        <div className="inline-flex self-center items-center gap-2 bg-wtf-purple border-2 border-[#2a2a2a] px-4 py-1.5 rounded-full text-[10px] font-mono font-bold text-white uppercase tracking-widest shadow-[3px_3px_0px_#2a2a2a] tilt-left">
          <span>06 • Kinetic Typography</span>
        </div>

        {/* Display Panel */}
        <div
          ref={textContainerRef}
          className="relative min-h-[260px] flex items-center justify-center border-3 border-[#2a2a2a] bg-zinc-50 rounded-xl shadow-inner overflow-hidden p-6 cursor-crosshair select-none"
        >
          <div className="absolute top-3 left-3 font-mono text-[9px] text-zinc-400 tracking-wider">
            {mode.toUpperCase()} WORKSPACE
          </div>

          <h1
            className="text-4xl md:text-7xl font-serif font-black tracking-tight flex flex-wrap justify-center gap-x-3 gap-y-1 w-full text-center"
            style={{
              filter: mode === "liquid" ? "url(#liquid-filter)" : "none",
            }}
          >
            {textInput.split(" ").map((word, wordIdx) => (
              <span key={wordIdx} className="inline-block whitespace-nowrap">
                {word.split("").map((char, charIdx) => {
                  // Global flat index for class reference
                  const flatIndex =
                    textInput.split(" ").slice(0, wordIdx).join("").length +
                    charIdx;
                  return (
                    <span
                      key={charIdx}
                      className={`kinetic-char char-${flatIndex} inline-block transform origin-center font-black text-[#2a2a2a] will-change-transform`}
                      style={{ textShadow: "3px 3px 0px #f1b333" }}
                    >
                      {char}
                    </span>
                  );
                })}
              </span>
            ))}
          </h1>
        </div>

        {/* Control Center */}
        <div className="grid grid-cols-1 md:grid-cols-3 gap-6 text-left border-t-3 border-dashed border-zinc-200 pt-6">
          {/* Section 1: Inputs & Presets */}
          <div className="flex flex-col gap-3">
            <label className="font-mono text-xs font-bold text-zinc-500 uppercase">
              1. Custom Text Input
            </label>
            <input
              type="text"
              maxLength={22}
              value={textInput}
              onChange={(e) => setTextInput(e.target.value.toUpperCase())}
              placeholder="ENTER SENTENCE"
              className="w-full border-3 border-[#2a2a2a] px-3 py-2 font-mono font-bold rounded-lg focus:outline-none focus:bg-yellow-50 placeholder-zinc-400 shadow-[3px_3px_0px_#2a2a2a]"
            />
            <div className="flex flex-wrap gap-2 mt-1">
              {["AWWWARDS", "KINETIC", "BRUTALISM", "GSAP"].map((preset) => (
                <button
                  key={preset}
                  onClick={() => loadPreset(preset)}
                  className="font-mono text-[9px] font-bold border border-[#2a2a2a] px-2 py-0.5 rounded bg-zinc-100 hover:bg-wtf-yellow transition-colors cursor-pointer"
                >
                  {preset}
                </button>
              ))}
            </div>
          </div>

          {/* Section 2: Mode Selector */}
          <div className="flex flex-col gap-2.5">
            <label className="font-mono text-xs font-bold text-zinc-500 uppercase">
              2. Animation Mode
            </label>
            <div className="grid grid-cols-2 gap-2">
              {(
                [
                  { id: "wave", label: "Wave Cascade" },
                  { id: "scramble", label: "Cyber Scramble" },
                  { id: "magnetic", label: "Magnetic Push" },
                  { id: "liquid", label: "Liquid Warp" },
                ] as const
              ).map((m) => (
                <button
                  key={m.id}
                  onClick={() => setMode(m.id)}
                  className={`font-mono text-[11px] font-bold py-2 px-2.5 border-2 border-[#2a2a2a] rounded-lg transition-all shadow-[2px_2px_0px_#2a2a2a] cursor-pointer ${
                    mode === m.id
                      ? "bg-wtf-purple text-white shadow-none translate-x-[2px] translate-y-[2px]"
                      : "bg-white text-[#2a2a2a] hover:bg-zinc-100"
                  }`}
                >
                  {m.label}
                </button>
              ))}
            </div>
          </div>

          {/* Section 3: Fine Tuning & Actions */}
          <div className="flex flex-col gap-3 justify-between">
            <div>
              <div className="flex justify-between items-center mb-1">
                <label className="font-mono text-xs font-bold text-zinc-500 uppercase">
                  3. Speed Multiplier
                </label>
                <span className="font-mono text-xs font-bold bg-zinc-100 border border-zinc-350 px-1.5 rounded">
                  {speed.toFixed(1)}x
                </span>
              </div>
              <input
                type="range"
                min="0.5"
                max="2.5"
                step="0.1"
                value={speed}
                onChange={(e) => setSpeed(parseFloat(e.target.value))}
                className="w-full accent-wtf-purple cursor-ew-resize"
              />
            </div>

            <div className="flex gap-2">
              <button
                onClick={triggerReplay}
                className="flex-1 brutalist-btn bg-wtf-purple text-white font-mono font-bold text-xs py-2 px-4 rounded-lg uppercase cursor-pointer"
              >
                ⚡ Re-Trigger
              </button>

              <div className="flex-1">
                <button
                  onClick={() =>
                    window.history.length > 1
                      ? window.history.back()
                      : (window.location.href = "/")
                  }
                  className="w-full brutalist-btn bg-wtf-yellow text-[#2a2a2a] font-mono font-bold text-xs py-2 px-4 rounded-lg uppercase cursor-pointer"
                >
                  ← Back
                </button>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  );
}
master*0 ⓧ0 ⚠
Ln 370, Col 1Spaces: 2UTF-8TypeScript JSXPrettier

⚙️ Setup & Integration Guide

How to install, import, and configure this animation in your project

💻

Option A: Install via CLI (Recommended)

You can install this component directly into your project via the TweenLabs CLI. It automatically creates the file and configures dependencies:

npx tweenlabs add kinetic-typography

Option B: Manual Installation

Follow these steps to integrate the component into your project manually:

1

Install Packages

First, install GSAP and its official React hook helper library (@gsap/react).

npm install gsap @gsap/react
2

Add Required CSS Styles

Copy the styles from the Required CSS tab above, or open the styles.css file that was automatically downloaded with your component. Paste these classes into your global stylesheet (e.g. src/app/globals.css or similar).

3

Create Component File

Create a new file in your React or Next.js project (e.g. src/components/KineticText.tsx) and paste the code from the Standalone React Component tab above. If no standalone tab is available, copy the full page file code and adjust the routing logic for your needs.

4

Import & Render

Import and render the component in your page or view layout:

App Page
import KineticText from "@/components/KineticText";

export default function Page() {
  return (
    <main className="min-h-screen p-8 bg-[#f5f5f5] flex items-center justify-center">
      <KineticText />
    </main>
  );
}
💡

Customization & Component Properties

🛠️ Customization & Component Properties (Props)

You can pass the following settings to configure the layout and animation details:

  • text (string): Target text to display.
  • mode (string): The animation effect layout. Options: 'wave' | 'scramble' | 'magnetic' | 'liquid'.