From 994ea02dbe4467a4c60e80fd18ddf4b0a9477c1a Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 07:56:29 +0200 Subject: [PATCH] Adjust blur and opacity values for glow effect --- animeCat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/animeCat.js b/animeCat.js index 89df3d5..a99c360 100644 --- a/animeCat.js +++ b/animeCat.js @@ -70,8 +70,8 @@ window.AnimeCat = class AnimeCat { height: '40px', pointerEvents: 'none', zIndex: 1, - filter: 'blur(10px)', // ruhig auch 14px für weichen Rand! - opacity: '0.8', // Wieviel du willst! + filter: 'blur(6px)', // ruhig auch 14px für weichen Rand! + opacity: '0.9', // Wieviel du willst! transition: 'background 0.4s, opacity 0.3s' }); this.catContainer.appendChild(this.glow);