]> git.r.bdr.sh - rbdr/r.bdr.sh/commitdiff
Uses %
authorRuben Beltran del Rio <redacted>
Fri, 16 Feb 2024 23:41:42 +0000 (00:41 +0100)
committerRuben Beltran del Rio <redacted>
Fri, 16 Feb 2024 23:41:42 +0000 (00:41 +0100)
js/animation.js

index 2474be3dd84d4f7fd52002743677143553bc99ab..c41d363e6ff4a638d0bab6f037b92851751c5408 100644 (file)
@@ -18,7 +18,7 @@
         x: r(64),
         y: r(64),
         a: R() * 2 * PI,
-        c: r(256)
+        c: r(100)
       })),
       H = [sqr, crc, hrt, chs, lch],
       P = [id, spn(5), spn(15)],
@@ -58,7 +58,7 @@
     var {x, y} = pos(i)
     X.beginPath()
     X.lineWidth = 5
-    X.strokeStyle = `hsl(0,0,${i.c})`
+    X.strokeStyle = `hsl(0,0,${i.c}%)`
     X.moveTo(x, y)
     X.lineTo(x * 10 * C(i.a), y * 10 * S(i.a))
     X.stroke()
@@ -94,7 +94,7 @@
   }
 
   function ucl(i) {
-    i.c = (i.c + 5) % 256
+    i.c = (i.c + 2) % 101
   }
 
   function frm(t) {
     if (dt > 1000 / f) {
       k && X.clearRect(0, 0, 64, 64)
       for (var i of I) {
-        X.fillStyle = `hsl(0,0,${i.c})`
+        X.fillStyle = `hsl(0,0,${i.c}%)`
         draw(i)
         c && ucl(i)
         mov(i)