From 878e34d67bc893601baf5b4b82a0bf4e510a5b86 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 08:03:47 +0200 Subject: [PATCH] Fine-tune glow animation increment --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index b1ff992..90bfac2 100644 --- a/animeCat.js +++ b/animeCat.js @@ -166,7 +166,7 @@ window.AnimeCat = class AnimeCat { const phase = 0.92 + 0.2 * Math.sin(t); this.glow.style.opacity = phase.toFixed(2); // Wenn du magst: this.glow.style.filter = `blur(${10 + 2*Math.sin(t/2)}px)`; - t += 0.05; + t += 0.03; this._glowWobbleId = requestAnimationFrame(loop); }; loop();