From e9bcdae5936b6fa9b85da26f0b988d2cb1b0f416 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 08:00:10 +0200 Subject: [PATCH] Adjust glow animation phase --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index 820ebc0..7168102 100644 --- a/animeCat.js +++ b/animeCat.js @@ -163,7 +163,7 @@ window.AnimeCat = class AnimeCat { let t = 0; const loop = () => { // Sanfte Wellen-Animation der Opazität - const phase = 0.92 + 0.08 * Math.sin(t); + 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;