From fd7bf1cc1a9f02c55e879750a2e9d4ca0bd51c48 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 08:00:32 +0200 Subject: [PATCH] Increase glow animation speed --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index 7168102..3de7f39 100644 --- a/animeCat.js +++ b/animeCat.js @@ -166,7 +166,7 @@ window.AnimeCat = class AnimeCat { const phase = 0.92 + 0.5 * 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.8; this._glowWobbleId = requestAnimationFrame(loop); }; loop();