-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfx-index.json
More file actions
4043 lines (4043 loc) · 123 KB
/
Copy pathfx-index.json
File metadata and controls
4043 lines (4043 loc) · 123 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
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "fx-lab",
"version": "0.1.0",
"homepage": "https://fx.rosuh.me/",
"sections": [
{
"id": "generative",
"name": "Generative",
"nameLocal": "生成"
},
{
"id": "post-and-print",
"name": "Post & Print",
"nameLocal": "后处理·印刷"
},
{
"id": "world-patterns",
"name": "World Patterns",
"nameLocal": "世界纹样"
},
{
"id": "design-movements",
"name": "Design Movements",
"nameLocal": "设计流派"
},
{
"id": "data-and-system",
"name": "Data & System",
"nameLocal": "数据·系统"
},
{
"id": "interaction",
"name": "Interaction",
"nameLocal": "交互"
},
{
"id": "geometry-and-curves",
"name": "Geometry & Curves",
"nameLocal": "几何·曲线"
},
{
"id": "fractal-and-chaos",
"name": "Fractal & Chaos",
"nameLocal": "分形·混沌"
},
{
"id": "cellular-and-physics",
"name": "Cellular & Physics",
"nameLocal": "元胞·物理"
},
{
"id": "world-patterns-ii",
"name": "World Patterns II",
"nameLocal": "世界纹样 II"
},
{
"id": "screen-and-signal",
"name": "Screen & Signal",
"nameLocal": "屏幕·信号"
},
{
"id": "interaction-and-generative",
"name": "Interaction & Generative II",
"nameLocal": "交互·生成 II"
}
],
"effects": [
{
"id": "gradient",
"kind": "shader",
"name": "Gradient Flow",
"nameLocal": null,
"section": "generative",
"summary": "Silky domain-warped color field in deep blue, purple and teal; slow hypnotic drift.",
"description": "Layered FBM domain-warp generates a continuously morphing gradient across the frame. Mouse position subtly shifts the warp anchor, making the color field breathe toward the cursor. Ideal as a calm animated background behind text or UI.",
"descriptionZh": "域扭曲 FBM · 跟随光标",
"tags": [
"noise",
"flow",
"plasma",
"glow",
"webgl2",
"background"
],
"vibe": [
"calm",
"ambient",
"meditative"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/gradient.md",
"preview": null
},
{
"id": "dots",
"kind": "shader",
"name": "Dot-Matrix Wave",
"nameLocal": null,
"section": "generative",
"summary": "Blue-teal dot grid pulses in rolling waves; cursor pushes dots outward in a satisfying bulge.",
"description": "A 24×24 grid of round dots ripples with a traveling sine wave keyed to each cell's distance from the origin. Moving the cursor creates a localized bulge that expands nearby dots. Works as a subtle animated overlay or panel background.",
"descriptionZh": "点阵波动 + 光标隆起",
"tags": [
"dots",
"grid",
"waves",
"noise",
"webgl2",
"background"
],
"vibe": [
"calm",
"playful",
"geometric"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/dots.md",
"preview": null
},
{
"id": "metaballs",
"kind": "shader",
"name": "Metaballs",
"nameLocal": null,
"section": "generative",
"summary": "Five glowing purple-magenta blobs orbit and merge organically; cursor draws in a sixth.",
"description": "Five metaballs travel sine-path orbits and merge via a smooth potential-field threshold. The cursor injects a sixth ball, pulling the fluid mass toward the pointer. Good for psychedelic loading states or dark hero backgrounds.",
"descriptionZh": "有机融合光球",
"tags": [
"metaballs",
"plasma",
"glow",
"fluid",
"webgl2",
"background"
],
"vibe": [
"hypnotic",
"psychedelic",
"organic"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/metaballs.md",
"preview": null
},
{
"id": "aurora",
"kind": "shader",
"name": "Aurora Ribbons",
"nameLocal": null,
"section": "generative",
"summary": "Shimmering green-and-purple aurora curtains stream down a starry night sky; serene fullscreen background.",
"description": "Three fbm-driven aurora curtains with vertical rays sway over a faint starfield, fading into a horizon glow and cycling through green-to-purple hues on a near-black sky. The cursor's vertical position nudges the curtains. Slow and meditative; ideal as a dark-mode hero background.",
"descriptionZh": "极光丝带",
"tags": [
"aurora",
"waves",
"glow",
"noise",
"webgl2",
"background"
],
"vibe": [
"calm",
"meditative",
"ambient"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/aurora.md",
"preview": null
},
{
"id": "ripple",
"kind": "shader",
"name": "Ripple Grid",
"nameLocal": null,
"section": "generative",
"summary": "Teal grid lines bend under expanding ripple rings that emanate from the cursor.",
"description": "An 18×18 cell grid is distorted by a sine ripple that decays exponentially away from the mouse pointer. Far cells remain crisp while near cells warp dramatically. Use as an interactive background for demos or landing pages.",
"descriptionZh": "光标涟漪位移",
"tags": [
"ripple",
"grid",
"waves",
"noise",
"webgl2",
"background"
],
"vibe": [
"hypnotic",
"technical",
"geometric"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/ripple.md",
"preview": null
},
{
"id": "voronoi",
"kind": "shader",
"name": "Voronoi Cells",
"nameLocal": null,
"section": "generative",
"summary": "Animated colour-cell mosaic with drifting seeds in jewel tones; organic and hypnotic.",
"description": "A Voronoi partition whose seed points travel sine-path orbits, making cells grow and shrink continuously. Each cell's colour is derived from its hashed seed. Fits as a bold geometric background or section divider.",
"descriptionZh": "细胞晶格 · 自然分形",
"tags": [
"voronoi",
"cellular",
"geometry",
"noise",
"webgl2",
"background"
],
"vibe": [
"hypnotic",
"organic",
"geometric"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/voronoi.md",
"preview": null
},
{
"id": "truchet",
"kind": "shader",
"name": "Truchet Tiles",
"nameLocal": null,
"section": "generative",
"summary": "Scrolling arc-tile maze in dark teal; endlessly generative, calm, low-contrast texture.",
"description": "Each tile is randomly assigned one of two Truchet arc orientations, producing a connected maze-like pattern. The pattern scrolls horizontally over time. A calm, low-contrast texture for backgrounds or overlays.",
"descriptionZh": "程序化迷宫纹",
"tags": [
"tiling",
"geometry",
"lines",
"webgl2",
"background"
],
"vibe": [
"calm",
"geometric",
"meditative"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/truchet.md",
"preview": null
},
{
"id": "kaleido",
"kind": "shader",
"name": "Kaleidoscope",
"nameLocal": null,
"section": "generative",
"summary": "8-fold FBM kaleidoscope blooms with shifting hues; cursor tilts the mandala in real time.",
"description": "UV coordinates are folded into 8 symmetric segments before sampling layered FBM noise. Colour cycles slowly over time; mouse position shifts the noise anchor for live pattern control. Lush and hypnotic as a fullscreen hero or overlay.",
"descriptionZh": "万花筒 · 曼陀罗",
"tags": [
"kaleidoscope",
"mandala",
"fractal",
"noise",
"webgl2",
"background"
],
"vibe": [
"hypnotic",
"psychedelic"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/kaleido.md",
"preview": null
},
{
"id": "raymarch",
"kind": "shader",
"name": "Raymarch SDF",
"nameLocal": null,
"section": "generative",
"summary": "Glowing torus spins in deep space via 48-step SDF raymarching; blue-to-magenta Fresnel rim.",
"description": "A torus SDF is raymarched with dual-axis rotation driven by time. Fresnel shading produces a cool blue core transitioning to magenta at glancing angles on a near-black void. Best as a centerpiece or 3D-flavoured hero element.",
"descriptionZh": "光线步进 · 旋转环面",
"tags": [
"geometry",
"orbit",
"glow",
"rings",
"webgl2",
"background"
],
"vibe": [
"hypnotic",
"futuristic",
"technical"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/raymarch.md",
"preview": null
},
{
"id": "vapor",
"kind": "shader",
"name": "Vaporwave Grid",
"nameLocal": null,
"section": "post-and-print",
"summary": "Retro vaporwave: banded sunset sun over a perspective cyan neon grid scrolling to the horizon.",
"description": "The upper half renders a purple-to-pink sky with a horizontally-banded sun; the lower half draws a perspective-projected cyan grid that scrolls forward over time. A self-contained 80s aesthetic requiring no assets.",
"descriptionZh": "落日 + 透视霓虹网格",
"tags": [
"grid",
"neon",
"geometry",
"lines",
"webgl2",
"background"
],
"vibe": [
"retro",
"calm",
"futuristic"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/vapor.md",
"preview": null
},
{
"id": "glitch",
"kind": "shader",
"name": "Chromatic Glitch",
"nameLocal": null,
"section": "post-and-print",
"summary": "Horizontal RGB bands jitter and split over CRT scanlines; aggressive retro glitch.",
"description": "Hash-based band selection randomly shifts the R and B channels horizontally, creating chromatic aberration bursts. A scanline multiply darkens every other row for a CRT feel. Use as an aggressive overlay for retro or cyberpunk themes.",
"descriptionZh": "RGB 分离 + 扫描线",
"tags": [
"glitch",
"scanlines",
"noise",
"neon",
"webgl2",
"overlay"
],
"vibe": [
"aggressive",
"retro",
"dramatic"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "med",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/glitch.md",
"preview": null
},
{
"id": "field",
"kind": "canvas",
"name": "Flow Field",
"nameLocal": null,
"section": "data-and-system",
"summary": "Dim constellation of drifting particles draws faint connecting lines; cursor repels the swarm.",
"description": "Maintains 60 particles drifting with gentle noise, connected by faint blue lines when close, leaving soft trails via a partial alpha fill. The cursor repels nearby particles. Ideal as an ambient background for dark-themed interfaces.",
"descriptionZh": "粒子星座 · 光标搅动",
"tags": [
"particles",
"canvas2d",
"flow",
"trail",
"lines"
],
"vibe": [
"calm",
"ambient",
"elegant"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": false,
"state": {
"persistent": true,
"notes": "Particle positions and connecting-line trails accumulate via partial alpha clear"
},
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/field.md",
"preview": null
},
{
"id": "seigaiha",
"kind": "canvas",
"name": "Seigaiha",
"nameLocal": "青海波",
"section": "world-patterns",
"summary": "Serene overlapping blue-white wave fans tile the screen; calm Japanese oceanic elegance.",
"description": "Overlapping semicircle fans in offset rows form the traditional Japanese Seigaiha wave tiling on a deep navy ground. A subtle per-column sine offset gives the grid a gentle undulating quality. Use as a serene, refined background for Japan-themed or coastal designs.",
"descriptionZh": "和风波纹",
"tags": [
"waves",
"tiling",
"geometry",
"canvas2d",
"background"
],
"vibe": [
"calm",
"elegant",
"cultural"
],
"culture": "Japan",
"accuracyNote": "Procedural approximation of Japanese Seigaiha wave tiling; not a faithful reproduction of any specific historical motif.",
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/seigaiha.md",
"preview": null
},
{
"id": "girih",
"kind": "canvas",
"name": "Girih",
"nameLocal": "几何",
"section": "world-patterns",
"summary": "Dark ground of slowly rotating golden octagram lattice; elegant Islamic geometric meditation.",
"description": "Two overlapping rotated squares and a central octagon tile the canvas with gold lines on a near-black ground, evoking Islamic girih geometric art. The entire lattice rotates imperceptibly slowly, lending a hypnotic depth. Use as a dark, elegant background for cultural or luxury interfaces.",
"descriptionZh": "八角星镶嵌 · 金线",
"tags": [
"geometry",
"tiling",
"mosaic",
"canvas2d",
"background"
],
"vibe": [
"elegant",
"hypnotic",
"cultural"
],
"culture": "Islamic",
"accuracyNote": "Procedural approximation of Islamic girih tiling; not a faithful reproduction of any specific historical motif.",
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/girih.md",
"preview": null
},
{
"id": "celtic",
"kind": "canvas",
"name": "Celtic Knot",
"nameLocal": null,
"section": "world-patterns",
"summary": "Glowing green interlace arcs weave across a dark field with a flowing animated dash; hypnotic.",
"description": "Pairs of quarter-circle arcs are drawn with an animated dashed stroke whose offset advances each frame, creating the illusion of light flowing through an interlaced knot grid. The alternating arc directions mimic an over-under weave. Use as a moody background for Celtic-themed or fantasy designs.",
"descriptionZh": "交织绳结 · 流光",
"tags": [
"knot",
"weave",
"geometry",
"canvas2d",
"background"
],
"vibe": [
"hypnotic",
"elegant",
"cultural"
],
"culture": "Celtic",
"accuracyNote": "Procedural approximation of Celtic knotwork interlace; not a faithful reproduction of any specific historical motif.",
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/celtic.md",
"preview": null
},
{
"id": "aboriginal",
"kind": "canvas",
"name": "Dot Painting",
"nameLocal": null,
"section": "world-patterns",
"summary": "Warm earth-tone concentric dot rings orbit fixed anchors on dark brown; organic and meditative.",
"description": "Six randomly placed anchor points each emit six rings of coloured dots in ochre, sienna, cream, and red that slowly orbit in alternating directions. Positions are randomised once per mount and then persist. Inspired by the concentric dot technique of Australian Aboriginal art.",
"descriptionZh": "同心点画 · 大地色",
"tags": [
"dots",
"geometry",
"canvas2d",
"background"
],
"vibe": [
"meditative",
"organic",
"cultural"
],
"culture": "Aboriginal Australian",
"accuracyNote": "Procedural approximation of Aboriginal Australian dot painting; not a faithful reproduction of any specific historical motif.",
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": false,
"state": {
"persistent": true,
"notes": "Dot centre positions generated once on first frame via Math.random."
},
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/aboriginal.md",
"preview": null
},
{
"id": "inkwash",
"kind": "canvas",
"name": "Ink Wash",
"nameLocal": "水墨",
"section": "world-patterns",
"summary": "Soft ink blobs drift on cream paper; hover to drop a brushstroke wash at the cursor.",
"description": "Five radial-gradient ink blobs drift in slow Lissajous paths across a warm cream background, building a gently stained ink-wash field. Moving the cursor adds a darker ink mark at the pointer, simulating a brush touching paper. Use for meditative overlays or East Asian-themed interfaces.",
"descriptionZh": "晕染笔触 · 跟手",
"tags": [
"ink",
"canvas2d",
"background",
"overlay"
],
"vibe": [
"calm",
"meditative",
"cultural",
"minimal"
],
"culture": "China",
"accuracyNote": "Procedural approximation of Chinese ink wash painting; not a faithful reproduction of any specific historical motif.",
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": false,
"state": {
"persistent": true,
"notes": "Ink blob positions generated once on first frame via Math.random."
},
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/inkwash.md",
"preview": null
},
{
"id": "opart",
"kind": "canvas",
"name": "Op-Art Moiré",
"nameLocal": null,
"section": "design-movements",
"summary": "Black-and-white concentric rings create a dizzying moiré illusion; cursor shifts the offset.",
"description": "Draws two sets of concentric rings composited with `difference` mode to produce a moiré interference pattern. The second ring set tracks the cursor or auto-animates. Striking as a bold background or portfolio statement.",
"descriptionZh": "莫尔条纹 · 错视",
"tags": [
"moire",
"canvas2d",
"optical",
"rings",
"geometry"
],
"vibe": [
"hypnotic",
"geometric"
],
"culture": "Op-Art / optical illusion",
"accuracyNote": null,
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": true,
"trigger": "hover"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/opart.md",
"preview": null
},
{
"id": "bauhaus",
"kind": "canvas",
"name": "Bauhaus",
"nameLocal": null,
"section": "design-movements",
"summary": "Bold Bauhaus shapes — blue circle, red arc, yellow triangle — slow-turn in primary colours.",
"description": "Draws a Bauhaus-inspired geometric composition: a blue circle, a slowly rotating red half-disc, and a yellow triangle on a warm grey field, anchored by two horizontal black bars. Minimal and rhythmic — works well as a design-movement background or splash screen.",
"descriptionZh": "三原色几何构成",
"tags": [
"geometry",
"canvas2d",
"curves",
"lines"
],
"vibe": [
"elegant",
"geometric",
"minimal"
],
"culture": "Bauhaus / design movement",
"accuracyNote": null,
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/bauhaus.md",
"preview": null
},
{
"id": "memphis",
"kind": "canvas",
"name": "Memphis 80s",
"nameLocal": null,
"section": "design-movements",
"summary": "Neon Memphis shapes drift and spin on dark; vibrant 80s pop-design energy.",
"description": "Scatters 16 coloured shapes — filled circles, triangles, outline circles, and crosses — across a dark field, each bobbing and rotating to its own phase. Palette echoes 80s Memphis design. Works as a vibrant background or decorative overlay.",
"descriptionZh": "撞色碎片 · 波普",
"tags": [
"geometry",
"canvas2d",
"particles",
"lines"
],
"vibe": [
"playful",
"energetic",
"retro"
],
"culture": "Memphis / pop design",
"accuracyNote": null,
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": false,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/memphis.md",
"preview": null
},
{
"id": "matrix",
"kind": "canvas",
"name": "Matrix Rain",
"nameLocal": null,
"section": "data-and-system",
"summary": "Green Katakana glyphs cascade in columns on black; iconic hacker-terminal rain effect.",
"description": "Renders falling Katakana characters with a partial alpha fill that leaves persistent green trails, recreating the classic Matrix rain aesthetic. Each column resets at a random interval. An unmistakable retro-cyber background.",
"descriptionZh": "片假名数字雨",
"tags": [
"ascii",
"canvas2d",
"rain",
"trail",
"neon"
],
"vibe": [
"retro",
"dramatic",
"technical"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": false,
"state": {
"persistent": true,
"notes": "Column y-positions and character trails accumulate via partial alpha clear"
},
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/matrix.md",
"preview": null
},
{
"id": "scope",
"kind": "canvas",
"name": "Oscilloscope",
"nameLocal": null,
"section": "data-and-system",
"summary": "Phosphor-green oscilloscope waveform glows on a dim CRT grid; calm technical atmosphere.",
"description": "Simulates a CRT oscilloscope: a faint green grid overlays a dark background, and a compound glowing sine wave sweeps across the full display each frame. Use for data-vis dashboards, retro instrument UI, or lofi ambient backgrounds.",
"descriptionZh": "示波器波形 · 荧光",
"tags": [
"oscilloscope",
"canvas2d",
"waves",
"glow",
"grid"
],
"vibe": [
"calm",
"technical",
"retro"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": true,
"state": null,
"license": "MIT",
"attribution": null,
"url": "https://fx.rosuh.me/effects/scope.md",
"preview": null
},
{
"id": "starfield",
"kind": "canvas",
"name": "Starfield Warp",
"nameLocal": null,
"section": "data-and-system",
"summary": "Stars streak inward at warp speed from a deep-space vanishing point; hypnotic forward pull.",
"description": "Projects 150 stars from a central origin outward, drawing each as a streak from its previous to current position. Stars brighten and widen as they near the viewport edge, leaving soft warp trails via a partial alpha fill. Perfect for sci-fi hero sections or loading screens.",
"descriptionZh": "星空跃迁",
"tags": [
"starfield",
"canvas2d",
"stars",
"trail",
"tunnel"
],
"vibe": [
"futuristic",
"hypnotic",
"energetic"
],
"culture": null,
"accuracyNote": null,
"perf": {
"gpu": "low",
"cpu": "low",
"mobileSafe": true
},
"interactive": {
"followsCursor": false,
"trigger": "auto"
},
"reducedMotion": "freeze",
"deterministic": false,
"state": {
"persistent": true,