-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
835 lines (742 loc) · 29.8 KB
/
index.html
File metadata and controls
835 lines (742 loc) · 29.8 KB
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Coding Libraries for Designers</title>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=DM+Mono:ital,wght@0,300;0,400;1,300&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0a0a;
--surface: #111;
--border: #222;
--text: #e8e4dc;
--muted: #666;
--accent-1: #ff5c35;
--accent-2: #c5f135;
--accent-3: #35c5f1;
--accent-4: #f1c535;
--accent-5: #c535f1;
}
html { scroll-behavior: smooth; }
body {
font-family: 'DM Mono', monospace;
background: var(--bg);
color: var(--text);
min-height: 100vh;
overflow-x: hidden;
}
/* Header */
header {
padding: 80px 60px 60px;
border-bottom: 1px solid var(--border);
position: relative;
overflow: hidden;
}
header::before {
content: '';
position: absolute;
top: -100px; right: -100px;
width: 500px; height: 500px;
background: radial-gradient(circle, rgba(197,241,53,0.06) 0%, transparent 70%);
pointer-events: none;
}
.eyebrow {
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent-2);
margin-bottom: 20px;
}
h1 {
font-family: 'Syne', sans-serif;
font-size: clamp(42px, 6vw, 80px);
font-weight: 800;
line-height: 1.0;
letter-spacing: -0.03em;
color: var(--text);
max-width: 800px;
}
h1 em {
font-style: normal;
color: var(--accent-1);
}
.subtitle {
margin-top: 24px;
font-size: 13px;
color: var(--muted);
max-width: 480px;
line-height: 1.7;
}
.count-badge {
display: inline-block;
margin-top: 32px;
padding: 6px 14px;
border: 1px solid var(--border);
font-size: 11px;
letter-spacing: 0.12em;
color: var(--muted);
}
/* Category nav */
.cat-nav {
display: flex;
gap: 0;
padding: 0 60px;
border-bottom: 1px solid var(--border);
overflow-x: auto;
scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-pill {
padding: 16px 20px;
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
white-space: nowrap;
cursor: pointer;
border-bottom: 2px solid transparent;
transition: all 0.2s;
text-decoration: none;
}
.cat-pill:hover { color: var(--text); border-bottom-color: var(--text); }
.cat-pill.active { color: var(--accent-2); border-bottom-color: var(--accent-2); }
/* Main grid */
main {
padding: 60px;
}
/* Category section */
.category {
margin-bottom: 80px;
}
.cat-header {
display: flex;
align-items: baseline;
gap: 16px;
margin-bottom: 32px;
padding-bottom: 16px;
border-bottom: 1px solid var(--border);
}
.cat-icon {
font-size: 18px;
}
.cat-name {
font-family: 'Syne', sans-serif;
font-size: 20px;
font-weight: 700;
color: var(--text);
}
.cat-count {
font-size: 11px;
color: var(--muted);
letter-spacing: 0.1em;
}
/* Library cards */
.libs-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 1px;
background: var(--border);
}
.lib-card {
background: var(--bg);
padding: 28px 32px;
position: relative;
transition: background 0.2s;
text-decoration: none;
color: inherit;
display: block;
overflow: hidden;
}
.lib-card::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 3px; height: 0;
transition: height 0.3s ease;
}
.lib-card:hover {
background: var(--surface);
}
.lib-card:hover::before {
height: 100%;
}
/* accent colors per category */
.cat-visuals .lib-card::before { background: var(--accent-1); }
.cat-3d .lib-card::before { background: var(--accent-3); }
.cat-data .lib-card::before { background: var(--accent-2); }
.cat-audio .lib-card::before { background: var(--accent-5); }
.cat-anim .lib-card::before { background: var(--accent-4); }
.cat-physics .lib-card::before { background: var(--accent-1); }
.cat-typography .lib-card::before { background: var(--accent-3); }
.lib-top {
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 12px;
}
.lib-name {
font-family: 'Syne', sans-serif;
font-size: 18px;
font-weight: 700;
letter-spacing: -0.01em;
}
.lib-tag {
font-size: 9px;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 3px 8px;
border: 1px solid var(--border);
color: var(--muted);
white-space: nowrap;
margin-left: 12px;
flex-shrink: 0;
}
.lib-desc {
font-size: 12px;
line-height: 1.7;
color: #999;
margin-bottom: 20px;
}
.lib-footer {
display: flex;
align-items: center;
justify-content: space-between;
}
.lib-url {
font-size: 10px;
letter-spacing: 0.05em;
color: var(--muted);
transition: color 0.2s;
}
.lib-card:hover .lib-url {
color: var(--accent-2);
}
.lib-arrow {
font-size: 14px;
color: var(--muted);
transition: transform 0.2s, color 0.2s;
}
.lib-card:hover .lib-arrow {
transform: translate(3px, -3px);
color: var(--text);
}
/* highlight dot */
.lib-dot {
width: 6px; height: 6px;
border-radius: 50%;
display: inline-block;
margin-right: 8px;
flex-shrink: 0;
}
.cat-visuals .lib-dot { background: var(--accent-1); }
.cat-3d .lib-dot { background: var(--accent-3); }
.cat-data .lib-dot { background: var(--accent-2); }
.cat-audio .lib-dot { background: var(--accent-5); }
.cat-anim .lib-dot { background: var(--accent-4); }
.cat-physics .lib-dot { background: var(--accent-1); }
.cat-typography .lib-dot { background: var(--accent-3); }
/* Footer */
footer {
padding: 40px 60px;
border-top: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 11px;
color: var(--muted);
letter-spacing: 0.05em;
}
@media (max-width: 700px) {
header, main, footer, .cat-nav { padding-left: 24px; padding-right: 24px; }
.libs-grid { grid-template-columns: 1fr; }
h1 { font-size: 36px; }
}
</style>
</head>
<body>
<header>
<p class="eyebrow">Designer's Toolkit · Creative Coding</p>
<h1>Build things that <em>move,<br>breathe & surprise.</em></h1>
<p class="subtitle">A curated set of JavaScript libraries and frameworks that let designers push ideas beyond static screens — no deep engineering required.</p>
<span class="count-badge">18 libraries across 6 categories</span>
</header>
<nav class="cat-nav">
<a class="cat-pill active" href="#visuals">🎨 Visuals</a>
<a class="cat-pill" href="#3d">🧊 3D & WebGL</a>
<a class="cat-pill" href="#data">📊 Data & Charts</a>
<a class="cat-pill" href="#audio">🔊 Audio & Music</a>
<a class="cat-pill" href="#animation">✨ Animation</a>
<a class="cat-pill" href="#physics">🌊 Physics & Simulation</a>
<!-- <a class="cat-pill" href="#typography">🔤 Typography</a> -->
</nav>
<main>
<!-- VISUALS -->
<section class="category cat-visuals" id="visuals">
<div class="cat-header">
<span class="cat-icon">🎨</span>
<span class="cat-name">Interactive Visuals & Generative Art</span>
<span class="cat-count">5 libraries</span>
</div>
<div class="libs-grid">
<a class="lib-card" href="https://p5js.org" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>p5.js</span>
<span class="lib-tag">Beginner-friendly</span>
</div>
<p class="lib-desc">The creative coder's sketchpad — draw, animate, and respond to mouse/keyboard input with a simple, artist-first API inspired by Processing.</p>
<div class="lib-footer">
<span class="lib-url">p5js.org</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<a class="lib-card" href="https://two.js.org" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Two.js</span>
<span class="lib-tag">2D Rendering</span>
</div>
<p class="lib-desc">A renderer-agnostic 2D drawing API that works across SVG, Canvas, and WebGL — perfect for crisp, scalable generative graphics.</p>
<div class="lib-footer">
<span class="lib-url">two.js.org</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<a class="lib-card" href="https://paperjs.org" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Paper.js</span>
<span class="lib-tag">Vector / SVG</span>
</div>
<p class="lib-desc">A vector graphics scripting framework that runs on top of HTML5 Canvas — ideal for path-based generative drawings and morphing shapes.</p>
<div class="lib-footer">
<span class="lib-url">paperjs.org</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://pixijs.com" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>PixiJS</span>
<span class="lib-tag">GPU-accelerated</span>
</div>
<p class="lib-desc">Blazing-fast 2D WebGL renderer with rich sprite, filter, and shader support — great for fluid, high-performance visual experiences at scale.</p>
<div class="lib-footer">
<span class="lib-url">pixijs.com</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<a class="lib-card" href="https://ptsjs.org" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>pts.js</span>
<span class="lib-tag">Geometry & Math</span>
</div>
<p class="lib-desc">A library for creative coding built around points, forms, and spaces — an elegant math-meets-art API great for geometric explorations and spatial thinking.</p>
<div class="lib-footer">
<span class="lib-url">ptsjs.org</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://svgjs.dev" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>svg.js</span>
<span class="lib-tag">Vector</span>
</div>
<p class="lib-desc">Lightweight, expressive library for creating and animating SVGs in fine detail — ideal for designers who think natively in vectors and paths.</p>
<div class="lib-footer">
<span class="lib-url">svgjs.dev</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<a class="lib-card" href="https://zzz.dog" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Zdog</span>
<span class="lib-tag">Pseudo-3D</span>
</div>
<p class="lib-desc">A flat-design 3D engine for canvas and SVG — makes pseudo-3D illustrated scenes that feel like interactive Dribbble shots come to life.</p>
<div class="lib-footer">
<span class="lib-url">zzz.dog</span>
<span class="lib-arrow">↗</span>
</div>
</a>
</div>
</section>
<!-- 3D -->
<section class="category cat-3d" id="3d">
<div class="cat-header">
<span class="cat-icon">🧊</span>
<span class="cat-name">3D & WebGL</span>
<span class="cat-count">2 libraries</span>
</div>
<div class="libs-grid">
<a class="lib-card" href="https://threejs.org" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Three.js</span>
<span class="lib-tag">Industry Standard</span>
</div>
<p class="lib-desc">The go-to 3D library for the web — build scenes with lights, cameras, materials, and shaders without writing raw WebGL.</p>
<div class="lib-footer">
<span class="lib-url">threejs.org</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://docs.pmnd.rs/react-three-fiber" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>React Three Fiber</span>
<span class="lib-tag">React + 3D</span>
</div>
<p class="lib-desc">Three.js as React components — declarative, composable 3D scene-building that integrates naturally with modern web interfaces.</p>
<div class="lib-footer">
<span class="lib-url">docs.pmnd.rs/react-three-fiber</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<a class="lib-card" href="https://spline.design" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Spline</span>
<span class="lib-tag">No-code + Code</span>
</div>
<p class="lib-desc">A design tool for 3D that exports interactive scenes directly to the web — designers can build and embed 3D without touching raw code.</p>
<div class="lib-footer">
<span class="lib-url">spline.design</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://oframe.github.io/ogl" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>OGL</span>
<span class="lib-tag">Lightweight WebGL</span>
</div>
<p class="lib-desc">A minimal WebGL library for designers who want direct shader control without the overhead — perfect for custom visual effects and experiments.</p>
<div class="lib-footer">
<span class="lib-url">oframe.github.io/ogl</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<!-- <a class="lib-card" href="https://babylonjs.com" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Babylon.js</span>
<span class="lib-tag">Game Engine</span>
</div>
<p class="lib-desc">A powerful, feature-rich 3D engine with a visual inspector and physics built in — closer to a game engine, great for immersive web experiences.</p>
<div class="lib-footer">
<span class="lib-url">babylonjs.com</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<!-- <a class="lib-card" href="https://theatrejs.com" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Theatre.js</span>
<span class="lib-tag">Visual Editor</span>
</div>
<p class="lib-desc">A visual animation editor for the web — design 3D and DOM animations with a keyframe timeline UI, no pure-code guesswork required.</p>
<div class="lib-footer">
<span class="lib-url">theatrejs.com</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<!-- <a class="lib-card" href="https://curtainsjs.com" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Curtains.js</span>
<span class="lib-tag">Shader Effects</span>
</div>
<p class="lib-desc">Adds WebGL shader effects to regular HTML/CSS elements — the easiest way to make images and planes ripple, distort, and warp on scroll or hover.</p>
<div class="lib-footer">
<span class="lib-url">curtainsjs.com</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
</div>
</section>
<!-- DATA -->
<section class="category cat-data" id="data">
<div class="cat-header">
<span class="cat-icon">📊</span>
<span class="cat-name">Data Visualization & Charts</span>
<span class="cat-count">3 libraries</span>
</div>
<div class="libs-grid">
<a class="lib-card" href="https://d3js.org" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>D3.js</span>
<span class="lib-tag">Data-driven</span>
</div>
<p class="lib-desc">The gold standard for expressive, custom data visualization — bind data to DOM elements and build charts no library template can match.</p>
<div class="lib-footer">
<span class="lib-url">d3js.org</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<a class="lib-card" href="https://vega.github.io/vega-lite" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Vega-Lite</span>
<span class="lib-tag">Declarative</span>
</div>
<p class="lib-desc">Describe charts as JSON specifications rather than code — fast to prototype complex multi-layered visualizations with minimal effort.</p>
<div class="lib-footer">
<span class="lib-url">vega.github.io/vega-lite</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<a class="lib-card" href="https://observablehq.com/plot" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Observable Plot</span>
<span class="lib-tag">Modern API</span>
</div>
<p class="lib-desc">From the creators of D3 — a concise, expressive charting library that makes exploratory data visualization feel as fast as sketching.</p>
<div class="lib-footer">
<span class="lib-url">observablehq.com/plot</span>
<span class="lib-arrow">↗</span>
</div>
</a>
</div>
</section>
<!-- AUDIO -->
<section class="category cat-audio" id="audio">
<div class="cat-header">
<span class="cat-icon">🔊</span>
<span class="cat-name">Audio, Music & Sound</span>
<span class="cat-count">3 libraries</span>
</div>
<div class="libs-grid">
<a class="lib-card" href="https://tonejs.github.io" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Tone.js</span>
<span class="lib-tag">Music + Synth</span>
</div>
<p class="lib-desc">A full-featured framework for interactive music in the browser — build synthesizers, sequences, effects chains, and generative sound compositions.</p>
<div class="lib-footer">
<span class="lib-url">tonejs.github.io</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://howlerjs.com" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Howler.js</span>
<span class="lib-tag">Audio Playback</span>
</div>
<p class="lib-desc">The simplest way to load, play, and spatialize audio across browsers — great for interactive sound design, UI sound, and audio-reactive experiences.</p>
<div class="lib-footer">
<span class="lib-url">howlerjs.com</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<a class="lib-card" href="https://strudel.cc" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Strudel</span>
<span class="lib-tag">Live Coding Music</span>
</div>
<p class="lib-desc">Live-code rhythmic patterns and generative music directly in the browser — a playful, expressive take on algorithmic music-making for curious non-musicians.</p>
<div class="lib-footer">
<span class="lib-url">strudel.cc</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://alemangui.github.io/pizzicato" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Pizzicato.js</span>
<span class="lib-tag">Simple Audio</span>
</div>
<p class="lib-desc">A dead-simple library for creating and manipulating sounds in the browser — great for designers who want audio effects without the Web Audio API complexity.</p>
<div class="lib-footer">
<span class="lib-url">alemangui.github.io/pizzicato</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<a class="lib-card" href="https://magenta.tensorflow.org/js" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Magenta.js</span>
<span class="lib-tag">AI Music</span>
</div>
<p class="lib-desc">Google's ML library for music and art generation — create AI-assisted melodies, drum patterns, and musical continuations directly in the browser.</p>
<div class="lib-footer">
<span class="lib-url">magenta.tensorflow.org/js</span>
<span class="lib-arrow">↗</span>
</div>
</a>
</div>
</section>
<!-- ANIMATION -->
<section class="category cat-anim" id="animation">
<div class="cat-header">
<span class="cat-icon">✨</span>
<span class="cat-name">Animation & Motion</span>
<span class="cat-count">3 libraries</span>
</div>
<div class="libs-grid">
<a class="lib-card" href="https://gsap.com" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>GSAP</span>
<span class="lib-tag">Professional</span>
</div>
<p class="lib-desc">The industry standard for high-performance web animation — animate anything (DOM, SVG, canvas, WebGL) with precise timeline control and silky easing.</p>
<div class="lib-footer">
<span class="lib-url">gsap.com</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://motion.dev" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Motion (Framer)</span>
<span class="lib-tag">React-native</span>
</div>
<p class="lib-desc">Production-grade animation for React with a beautiful declarative API — gestures, layout animations, and scroll-linked effects with minimal code.</p>
<div class="lib-footer">
<span class="lib-url">motion.dev</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<a class="lib-card" href="https://animejs.com" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Anime.js</span>
<span class="lib-tag">Lightweight</span>
</div>
<p class="lib-desc">Lightweight, versatile animation engine for CSS, SVG, and DOM — beloved for its clean API and chainable timelines that make complex sequences feel effortless.</p>
<div class="lib-footer">
<span class="lib-url">animejs.com</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<a class="lib-card" href="https://airbnb.io/lottie" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Lottie</span>
<span class="lib-tag">After Effects → Web</span>
</div>
<p class="lib-desc">Renders After Effects animations as lightweight JSON on the web — the definitive bridge between motion designers and developers.</p>
<div class="lib-footer">
<span class="lib-url">airbnb.io/lottie</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://popmotion.io" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Popmotion</span>
<span class="lib-tag">Spring Physics</span>
</div>
<p class="lib-desc">A tiny, functional animation library that powers Framer Motion under the hood — great for spring physics and pointer-driven motion with a minimal footprint.</p>
<div class="lib-footer">
<span class="lib-url">popmotion.io</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
</div>
</section>
<!-- PHYSICS -->
<section class="category cat-physics" id="physics">
<div class="cat-header">
<span class="cat-icon">🌊</span>
<span class="cat-name">Physics, Simulation & ML</span>
<span class="cat-count">2 libraries</span>
</div>
<div class="libs-grid">
<!-- <a class="lib-card" href="https://brm.io/matter-js" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Matter.js</span>
<span class="lib-tag">Physics Engine</span>
</div>
<p class="lib-desc">A 2D physics engine for the browser — simulate gravity, collisions, and constraints to create interactive, physical interfaces that feel tangible.</p>
<div class="lib-footer">
<span class="lib-url">brm.io/matter-js</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<!-- <a class="lib-card" href="https://rapier.rs" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Rapier.js</span>
<span class="lib-tag">Rust / WASM</span>
</div>
<p class="lib-desc">A modern, blazing-fast physics engine written in Rust and compiled to WASM — pairs beautifully with Three.js and React Three Fiber for realistic simulations.</p>
<div class="lib-footer">
<span class="lib-url">rapier.rs</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<a class="lib-card" href="https://ml5js.org" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>ml5.js</span>
<span class="lib-tag">Friendly AI/ML</span>
</div>
<p class="lib-desc">Machine learning for artists and designers — use pose detection, image classification, and style transfer in the browser with just a few lines of code.</p>
<div class="lib-footer">
<span class="lib-url">ml5js.org</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://tensorflow.org/js" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>TensorFlow.js</span>
<span class="lib-tag">ML in Browser</span>
</div>
<p class="lib-desc">Run and train ML models directly in the browser — powers real-time webcam gesture recognition, image style transfer, and creative AI interactions.</p>
<div class="lib-footer">
<span class="lib-url">tensorflow.org/js</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
<a class="lib-card" href="https://github.com/nicoptere/hydra" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Hydra</span>
<span class="lib-tag">Live Visuals</span>
</div>
<p class="lib-desc">Live-code video synthesizer in the browser — chain GLSL-style operators to generate mesmerizing, reactive visuals in real time like a visual instrument.</p>
<div class="lib-footer">
<span class="lib-url">hydra.ojack.xyz</span>
<span class="lib-arrow">↗</span>
</div>
</a>
<!-- <a class="lib-card" href="https://lil-gui.georgealways.com" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>lil-gui</span>
<span class="lib-tag">Control Panel</span>
</div>
<p class="lib-desc">Instantly add sliders, color pickers, and dropdowns to any creative sketch — the quickest way to make generative parameters tweakable in real time.</p>
<div class="lib-footer">
<span class="lib-url">lil-gui.georgealways.com</span>
<span class="lib-arrow">↗</span>
</div>
</a> -->
</div>
</section>
<!-- TYPOGRAPHY -->
<!-- <section class="category cat-typography" id="typography">
<div class="cat-header">
<span class="cat-icon">🔤</span>
<span class="cat-name">Typography & Text</span>
<span class="cat-count">1 library</span>
</div>
<div class="libs-grid">
<a class="lib-card" href="https://splitting.js.org" target="_blank">
<div class="lib-top">
<span class="lib-name"><span class="lib-dot"></span>Splitting.js</span>
<span class="lib-tag">Text Animation</span>
</div>
<p class="lib-desc">Splits text into individual characters, words, or lines as HTML elements — unlocks character-by-character animations and typographic experiments with CSS or JS.</p>
<div class="lib-footer">
<span class="lib-url">splitting.js.org</span>
<span class="lib-arrow">↗</span>
</div>
</a>
</div>
</section> -->
</main>
<footer>
<span><a href="https://github.com/rasagy/awesome-creative-coding-js-libraries" style="color:white;">Creative Coding Libraries for Designers</a></span>
<span>18 tools · 6 categories</span>
<span>Collated by <i>Rasagy</i> with help from Claude</span>
</footer>
<script>
// Highlight nav pill on scroll
const sections = document.querySelectorAll('.category');
const pills = document.querySelectorAll('.cat-pill');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const id = entry.target.id;
pills.forEach(p => p.classList.remove('active'));
const active = document.querySelector(`.cat-pill[href="#${id}"]`);
if (active) active.classList.add('active');
}
});
}, { threshold: 0.3 });
sections.forEach(s => observer.observe(s));
</script>
</body>
</html>