]> git.r.bdr.sh - rbdr/r.bdr.sh/blame - js/animation.js
Use percentage
[rbdr/r.bdr.sh] / js / animation.js
CommitLineData
21b1c71d
RBR
1(function () {
2
3c30503b 3 var K = document.querySelector('canvas'),
94949070 4 { random: R, PI, cos: C, sin: S, floor, atan2: A } = Math,
06f7a18a
RBR
5 id = p => p,
6 spn = rad => p => ({
7 x: p.x + rad * C(l),
8 y: p.y + rad * S(l)
9 }),
e5d21bf4 10 X = K.getContext('2d'),
94949070
RBR
11 f = 24,
12 l = 0,
e5d21bf4
RBR
13 s = 1,
14 z = 5 + r(10),
15 k = R() > 0.5,
16 c = R() > 0.5,
0d1072c6 17 I = Array(r(10) + 6).fill().map(() => ({
a1bf86e5
RBR
18 x: r(64),
19 y: r(64),
20 a: R() * 2 * PI,
e5fa1fb8 21 c: r(100)
83c0fa69 22 })),
ad84fcff 23 H = [sqr, crc, hrt, chs, lch],
0d1072c6 24 P = [id, spn(5), spn(15)],
ad84fcff 25 draw = H[r(H.length)],
98bec09c 26 pos = P[r(P.length)]
00bc4991 27
55ca9087
RBR
28 function r(x) {
29 return floor(R() * x)
30 }
31
32 function sqr(i) {
33
e5d21bf4
RBR
34 var {x, y} = pos(i)
35 X.fillRect(x, y, z, z)
55ca9087
RBR
36 }
37
38 function crc(i) {
39
e5d21bf4
RBR
40 var {x, y} = pos(i)
41 X.beginPath()
42 X.arc(x, y, z / 2, 0, 2 * PI)
43 X.fill()
55ca9087
RBR
44 }
45
46 function chs(i) {
47
e5d21bf4
RBR
48 var {x, y} = pos(i)
49 X.beginPath()
50 X.moveTo(x, y)
51 X.lineTo(x * 10 * C(i.a), y * 10 * S(i.a))
52 X.lineTo(r(64), r(64))
53 X.fill()
55ca9087
RBR
54 }
55
56 function lch(i) {
57
e5d21bf4
RBR
58 var {x, y} = pos(i)
59 X.beginPath()
60 X.lineWidth = 5
a20337ef 61 X.strokeStyle = `hsl(0,0%,${i.c}%)`
e5d21bf4
RBR
62 X.moveTo(x, y)
63 X.lineTo(x * 10 * C(i.a), y * 10 * S(i.a))
64 X.stroke()
55ca9087
RBR
65 }
66
67 function hrt(i) {
68
e5d21bf4
RBR
69 var {x, y} = pos(i)
70 X.fillRect(x, y, z, z)
55ca9087 71
e5d21bf4
RBR
72 X.beginPath()
73 X.arc(x + z / 2, y, z / 2, 0, 2 * PI, false)
74 X.fill()
75 X.closePath()
55ca9087 76
e5d21bf4
RBR
77 X.beginPath()
78 X.arc(x + z, y + z / 2, z / 2, 0, 2 * PI, false)
79 X.fill()
80 X.closePath()
55ca9087
RBR
81 }
82
83 function mov(i) {
84
e5d21bf4
RBR
85 i.x = i.x + s * C(i.a)
86 i.y = i.y + s * S(i.a)
55ca9087
RBR
87
88 if (i.x < 0 || i.x > 64) {
89 i.a = A(S(i.a), -C(i.a))
90 }
91 if (i.y < 0 || i.y > 64) {
92 i.a = A(-S(i.a), C(i.a))
93 }
94 }
95
96 function ucl(i) {
e5fa1fb8 97 i.c = (i.c + 2) % 101
55ca9087
RBR
98 }
99
100 function frm(t) {
101
5099a2f6 102 requestAnimationFrame(frm)
55ca9087
RBR
103
104 var dt = t - l
105
106 if (dt > 1000 / f) {
e5d21bf4 107 k && X.clearRect(0, 0, 64, 64)
55ca9087 108 for (var i of I) {
a20337ef 109 X.fillStyle = `hsl(0,0%,${i.c}%)`
55ca9087 110 draw(i)
e5d21bf4 111 c && ucl(i)
55ca9087
RBR
112 mov(i)
113 }
114
115 l = t
116 }
117 }
21b1c71d 118
98bec09c 119 frm()
21b1c71d 120}
98bec09c 121)()