-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
446 lines (411 loc) Β· 22.4 KB
/
Copy pathindex.html
File metadata and controls
446 lines (411 loc) Β· 22.4 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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FlowCSS β The CSS Framework Built for Motion</title>
<meta name="description" content="A modern, minimal CSS framework with powerful animations, components, and theming β everything Tailwind can't do." />
<link rel="icon" type="image/png" href="./img/flow.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./flow.css" />
<style>
:root {
--flow-font-sans: 'DM Sans', system-ui, sans-serif;
--flow-font-mono: 'DM Mono', monospace;
}
body { font-family: var(--flow-font-sans); background: #fff; color: var(--flow-gray-900); }
/* Custom hero gradient */
.hero-bg {
background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,0.08) 0%, transparent 70%),
radial-gradient(ellipse 50% 40% at 80% 80%, rgba(14,165,233,0.06) 0%, transparent 60%);
}
/* Floating shapes */
.shape {
position: absolute;
border-radius: 50%;
filter: blur(40px);
pointer-events: none;
animation: flow-float 6s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; background: rgba(37,99,235,0.06); top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: rgba(14,165,233,0.06); bottom: 0; left: -80px; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: rgba(124,58,237,0.05); top: 40%; left: 10%; animation-delay: 4s; }
/* Code block */
.code-demo {
background: #0f172a;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 16px;
padding: 2rem;
font-family: var(--flow-font-mono);
font-size: 0.875rem;
line-height: 1.8;
overflow-x: auto;
position: relative;
}
.code-demo .token-class { color: #7dd3fc; }
.code-demo .token-string { color: #86efac; }
.code-demo .token-tag { color: #fda4af; }
.code-demo .token-attr { color: #c4b5fd; }
/* Feature card */
.feature-icon {
width: 48px;
height: 48px;
border-radius: 12px;
background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.1));
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
flex-shrink: 0;
}
/* Animation showcase grid */
.anim-card {
border: 1px solid var(--flow-gray-200);
border-radius: 12px;
padding: 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
cursor: pointer;
transition: all 0.25s ease;
}
.anim-card:hover { border-color: var(--flow-primary); box-shadow: 0 4px 20px rgba(37,99,235,0.1); }
.anim-demo-box {
width: 48px; height: 48px;
background: linear-gradient(135deg, var(--flow-primary), var(--flow-accent));
border-radius: 10px;
}
.anim-card:hover .anim-demo-box { animation-play-state: running; }
/* Comparison table */
.check { color: var(--flow-success); font-size: 1.1rem; }
.cross { color: var(--flow-danger); font-size: 1.1rem; }
/* Gradient section */
.gradient-section {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
position: relative;
overflow: hidden;
}
.gradient-section::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(37,99,235,0.15) 0%, transparent 70%);
}
/* Nav */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 2rem; display: flex; align-items: center; gap: 2rem; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); }
nav .logo { font-weight: 700; font-size: 1.125rem; color: #0a0a0a; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
nav .logo-dot { width: 8px; height: 8px; background: var(--flow-primary); border-radius: 50%; display: inline-block; }
nav .nav-links { display: flex; gap: 1.5rem; margin-left: auto; }
nav a { font-size: 0.875rem; color: var(--flow-gray-600); text-decoration: none; transition: color 0.2s; }
nav a:hover { color: var(--flow-gray-900); }
nav .nav-cta { background: var(--flow-gray-900); color: #fff; padding: 0.5rem 1.25rem; border-radius: 8px; font-weight: 500; font-size: 0.875rem; transition: opacity 0.2s; }
nav .nav-cta:hover { opacity: 0.85; color: #fff; }
/* Footer */
footer { border-top: 1px solid var(--flow-gray-100); padding: 3rem 2rem; text-align: center; color: var(--flow-gray-400); font-size: 0.875rem; }
.terminal-line::before { content: '$ '; color: #4ade80; }
/* Stagger visible fix */
.flow-stagger > * { opacity: 0; }
.stats-grid {
text-align: center;
}
@media (max-width: 768px) {
nav .nav-links { display: none; }
.stats-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.5rem 1rem;
}
.stats-grid .flow-stat {
padding: 0 0.25rem;
}
.stats-grid .flow-stat__label {
font-size: 0.95rem;
line-height: 1.35;
}
.stats-grid .flow-stat__value {
font-size: clamp(2.25rem, 10vw, 3.25rem);
line-height: 1;
overflow-wrap: anywhere;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<a href="index.html" class="logo"><span class="logo-dot"></span>FlowCSS</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="docs.html">Docs</a>
<a href="https://github.com/Flow-css/flowcss" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
<a href="docs.html" class="nav-cta nav-links">Get Started β</a>
</nav>
<!-- Hero -->
<section class="hero-bg flow-relative flow-overflow-hidden" style="padding-top: 8rem; padding-bottom: 6rem; min-height: 100vh; display: flex; align-items: center;">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="flow-container flow-text-center flow-relative" style="z-index:1">
<div class="flow-animate-fade-in flow-delay-100">
<span class="flow-badge flow-badge--primary flow-mb-4" style="display:inline-flex; margin-bottom: 1.5rem;">
<span class="flow-badge--dot" style="margin-right:0.5rem"></span>
v1.0 β Now available on npm
</span>
</div>
<h1 class="flow-animate-slide-up flow-delay-200" style="font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem;">
CSS that moves with you.<br>
<span class="flow-text-gradient">Animations included.</span>
</h1>
<p class="flow-animate-slide-up flow-delay-300 flow-text-lg flow-mx-auto" style="max-width: 560px; color: var(--flow-gray-500); margin-bottom: 2.5rem; line-height: 1.7;">
FlowCSS is a minimal, utility-first framework with 40+ built-in animations, powerful components, glassmorphism, 3D transforms, and dark mode β out of the box.
</p>
<div class="flow-animate-scale-in flow-delay-500" style="display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem;">
<a href="docs.html" class="flow-btn flow-btn--primary flow-btn--lg flow-btn--ripple">
Read the Docs β
</a>
<a href="https://npmjs.com" class="flow-btn flow-btn--outline flow-btn--lg">
npm i flowcss-style
</a>
</div>
<!-- Live code preview -->
<div class="flow-animate-rise flow-delay-700" style="max-width: 680px; margin: 0 auto; text-align: left;">
<div class="code-demo">
<div style="display:flex; gap:6px; margin-bottom:1.25rem;">
<span style="width:12px;height:12px;border-radius:50%;background:#ff5f57;display:inline-block"></span>
<span style="width:12px;height:12px;border-radius:50%;background:#ffbd2e;display:inline-block"></span>
<span style="width:12px;height:12px;border-radius:50%;background:#28c840;display:inline-block"></span>
</div>
<pre style="margin:0;background:none;padding:0;color:#e2e8f0;font-family:var(--flow-font-mono);font-size:0.875rem;line-height:1.8"><span class="token-tag"><div</span> <span class="token-attr">class</span>=<span class="token-string">"flow-card flow-card-3d flow-animate-slide-up"</span><span class="token-tag">></span>
<span class="token-tag"><h2</span> <span class="token-attr">class</span>=<span class="token-string">"flow-text-gradient flow-font-bold"</span><span class="token-tag">></span>Hello, Flow<span class="token-tag"></h2></span>
<span class="token-tag"><p</span> <span class="token-attr">class</span>=<span class="token-string">"flow-text-muted"</span><span class="token-tag">></span>Animations, no config needed.<span class="token-tag"></p></span>
<span class="token-tag"><button</span> <span class="token-attr">class</span>=<span class="token-string">"flow-btn flow-btn--gradient flow-btn--ripple"</span><span class="token-tag">></span>
Get started
<span class="token-tag"></button></span>
<span class="token-tag"></div></span></pre>
</div>
</div>
</div>
</section>
<!-- Stats -->
<section style="padding: 2rem 0; border-top: 1px solid var(--flow-gray-100); border-bottom: 1px solid var(--flow-gray-100);">
<div class="flow-container">
<div class="stats-grid flow-grid flow-grid-cols-4 flow-gap-0 flow-stagger flow-slide-up">
<div class="flow-stat">
<div class="flow-stat__label">Animations</div>
<div class="flow-stat__value flow-text-gradient" data-flow-counter data-count="40" data-suffix="+">0</div>
</div>
<div class="flow-stat">
<div class="flow-stat__label">Components</div>
<div class="flow-stat__value flow-text-gradient" data-flow-counter data-count="25" data-suffix="+">0</div>
</div>
<div class="flow-stat">
<div class="flow-stat__label">Bundle Size</div>
<div class="flow-stat__value flow-text-gradient">~28kb</div>
</div>
<div class="flow-stat">
<div class="flow-stat__label">Dependencies</div>
<div class="flow-stat__value flow-text-gradient">0</div>
</div>
</div>
</div>
</section>
<!-- Features -->
<section id="features" class="flow-section">
<div class="flow-container">
<div class="flow-text-center flow-mb-12 flow-reveal flow-reveal--up">
<p class="flow-text-sm flow-font-medium flow-text-primary flow-mb-2" style="letter-spacing:0.1em;text-transform:uppercase;">Why FlowCSS</p>
<h2 style="font-size:2.5rem;font-weight:700;letter-spacing:-0.02em;line-height:1.2;">Built for what Tailwind<br>left behind</h2>
</div>
<div class="flow-auto-grid flow-stagger flow-slide-up" style="--flow-auto-grid-min: 300px; gap: 1.5rem;">
<div class="flow-reveal flow-reveal--up">
<div class="flow-card" style="height:100%">
<div class="feature-icon" style="margin-bottom:1rem;">π¬</div>
<h3 class="flow-font-semibold flow-mb-2">40+ Animations</h3>
<p class="flow-text-sm flow-text-muted">Entrance, looping, attention-seekers, morphing, glitch, typewriter, shimmer, and scroll-triggered reveals. All via single classes.</p>
</div>
</div>
<div class="flow-reveal flow-reveal--up" style="--delay:100ms">
<div class="flow-card" style="height:100%">
<div class="feature-icon" style="margin-bottom:1rem;">πͺ</div>
<h3 class="flow-font-semibold flow-mb-2">Glassmorphism Built-in</h3>
<p class="flow-text-sm flow-text-muted">Use <code class="flow-code">flow-glass</code> or <code class="flow-code">flow-glass--dark</code> for instant frosted-glass effects with proper backdrop-filter support.</p>
</div>
</div>
<div class="flow-reveal flow-reveal--up">
<div class="flow-card" style="height:100%">
<div class="feature-icon" style="margin-bottom:1rem;">π¦</div>
<h3 class="flow-font-semibold flow-mb-2">Real Components</h3>
<p class="flow-text-sm flow-text-muted">Cards, navbars, badges, alerts, accordions, tabs, toasts, progress bars, timelines, and more β all styled and ready to use.</p>
</div>
</div>
<div class="flow-reveal flow-reveal--up">
<div class="flow-card" style="height:100%">
<div class="feature-icon" style="margin-bottom:1rem;">π¨</div>
<h3 class="flow-font-semibold flow-mb-2">CSS Variables Theming</h3>
<p class="flow-text-sm flow-text-muted">Every value β color, spacing, radius, shadow, font β is a CSS variable. Override any token globally or locally without config files.</p>
</div>
</div>
<div class="flow-reveal flow-reveal--up">
<div class="flow-card" style="height:100%">
<div class="feature-icon" style="margin-bottom:1rem;">π</div>
<h3 class="flow-font-semibold flow-mb-2">Dark Mode</h3>
<p class="flow-text-sm flow-text-muted">Add <code class="flow-code">data-theme="dark"</code> to the HTML element β no extra classes needed. Flow.js toggles and persists it automatically.</p>
</div>
</div>
<div class="flow-reveal flow-reveal--up">
<div class="flow-card" style="height:100%">
<div class="feature-icon" style="margin-bottom:1rem;">π</div>
<h3 class="flow-font-semibold flow-mb-2">Auto-responsive Grid</h3>
<p class="flow-text-sm flow-text-muted"><code class="flow-code">flow-auto-grid</code> uses CSS <code class="flow-code">auto-fit</code> to be responsive with no breakpoints. Zero media-query clutter.</p>
</div>
</div>
<div class="flow-reveal flow-reveal--up">
<div class="flow-card" style="height:100%">
<div class="feature-icon" style="margin-bottom:1rem;">π§</div>
<h3 class="flow-font-semibold flow-mb-2">3D Transforms</h3>
<p class="flow-text-sm flow-text-muted">Perspective, rotateX/Y, preserve-3d, and the <code class="flow-code">flow-card-3d</code> hover effect. First-class 3D CSS with no plugin needed.</p>
</div>
</div>
<div class="flow-reveal flow-reveal--up">
<div class="flow-card" style="height:100%">
<div class="feature-icon" style="margin-bottom:1rem;">β‘</div>
<h3 class="flow-font-semibold flow-mb-2">Zero Dependencies</h3>
<p class="flow-text-sm flow-text-muted">Just one CSS file and one optional JS file. No PostCSS, no build step, no configuration. Drop a link tag and go.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Animation showcase -->
<section id="animations" style="padding: 5rem 0; background: var(--flow-gray-50);">
<div class="flow-container">
<div class="flow-text-center flow-mb-12 flow-reveal flow-reveal--up">
<p class="flow-text-sm flow-font-medium flow-text-primary flow-mb-2" style="letter-spacing:0.1em;text-transform:uppercase;">Animations</p>
<h2 style="font-size:2.5rem;font-weight:700;letter-spacing:-0.02em;">Hover to preview</h2>
<p class="flow-text-muted flow-mt-2">40+ ready-to-use animations. Just add a class.</p>
</div>
<div class="flow-grid flow-gap-4" style="grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));">
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-bounce')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-bounce</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-float')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-float</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-spin')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-spin</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-heartbeat')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-heartbeat</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-shake')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-shake</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-tada')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-tada</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-jello')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-jello</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-rubber-band')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-rubber-band</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-morph')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-morph</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-pop')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-pop</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-blur-in')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-blur-in</code>
</div>
<div class="anim-card" onmouseenter="triggerAnim(this,'flow-animate-neon-pulse')">
<div class="anim-demo-box"></div>
<code class="flow-code flow-text-xs">flow-animate-neon-pulse</code>
</div>
</div>
</div>
</section>
<!-- Compare section -->
<section id="compare" class="flow-section">
<div class="flow-container">
<div class="flow-text-center flow-mb-12 flow-reveal flow-reveal--up">
<p class="flow-text-sm flow-font-medium flow-text-primary flow-mb-2" style="letter-spacing:0.1em;text-transform:uppercase;">Comparison</p>
<h2 style="font-size:2.5rem;font-weight:700;letter-spacing:-0.02em;">FlowCSS vs Tailwind</h2>
</div>
<div style="max-width:700px;margin:0 auto;" class="flow-reveal flow-reveal--up">
<table class="flow-table">
<thead>
<tr>
<th style="width:50%">Feature</th>
<th style="text-align:center">FlowCSS</th>
<th style="text-align:center">Tailwind</th>
</tr>
</thead>
<tbody>
<tr><td>Built-in animations</td><td style="text-align:center"><span class="check">β</span> 40+</td><td style="text-align:center"><span class="cross">β</span> 4</td></tr>
<tr><td>Scroll-triggered reveals</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center"><span class="cross">β</span></td></tr>
<tr><td>Glassmorphism utilities</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center"><span class="cross">β</span></td></tr>
<tr><td>3D / perspective utilities</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center"><span class="cross">β</span></td></tr>
<tr><td>Pre-built components</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center"><span class="cross">β</span></td></tr>
<tr><td>Dark mode (zero classes)</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center">Partial</td></tr>
<tr><td>Auto-responsive grid</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center"><span class="cross">β</span></td></tr>
<tr><td>Gradient text utilities</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center">Plugin needed</td></tr>
<tr><td>Zero build step</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center"><span class="cross">β</span></td></tr>
<tr><td>CSS variable theming</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center">Partial</td></tr>
<tr><td>Typewriter component</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center"><span class="cross">β</span></td></tr>
<tr><td>Ripple button effect</td><td style="text-align:center"><span class="check">β</span></td><td style="text-align:center"><span class="cross">β</span></td></tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Install CTA -->
<section class="gradient-section flow-relative" style="padding: 6rem 0;">
<div class="flow-container flow-text-center flow-relative" style="z-index:1;">
<div class="flow-reveal flow-reveal--scale">
<h2 style="font-size:2.5rem;font-weight:700;color:#fff;letter-spacing:-0.02em;margin-bottom:1rem;">
Start building in seconds.
</h2>
<p style="color:rgba(255,255,255,0.6);margin-bottom:2.5rem;font-size:1.125rem;">No config. No build step. Just drop it in and flow.</p>
<div class="code-demo flow-mx-auto flow-mb-6" style="max-width:480px;text-align:left;">
<p class="terminal-line" style="color:#e2e8f0;font-family:var(--flow-font-mono);">npm install flowcss</p>
<p style="color:rgba(255,255,255,0.4);font-family:var(--flow-font-mono);font-size:0.8rem;margin-top:0.5rem;"># or via CDN</p>
<p style="color:#86efac;font-family:var(--flow-font-mono);font-size:0.8rem;"><link rel="stylesheet" href="https://unpkg.com/flowcss/dist/flow.css"></p>
</div>
<a href="docs.html" class="flow-btn flow-btn--glass flow-btn--lg flow-btn--ripple" style="font-size:1rem;">
Read the Docs β
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p style="margin-bottom:0.5rem;">
<strong style="color:var(--flow-gray-700)">FlowCSS</strong> β Built with care. MIT Licensed.
</p>
<p>Made for developers who care about motion.</p>
</footer>
<script src="./flow.js"></script>
<script>
function triggerAnim(card, cls) {
const box = card.querySelector('.anim-demo-box');
box.className = 'anim-demo-box';
void box.offsetWidth;
box.classList.add(cls);
}
</script>
</body>
</html>