1
0

Add red border to glow element in animeCat.js

This commit is contained in:
2025-05-26 07:46:19 +02:00
parent c01ec22252
commit 5ded847ea1

View File

@@ -62,11 +62,11 @@ window.AnimeCat = class AnimeCat {
Object.assign(this.glow.style, {
position: 'absolute',
borderRadius: '50%',
border: '1px solid red',
width: '62px', // vorher 120px
height: '40px', // vorher 80px (Verhältnis zur Katze beibehalten!)
pointerEvents: 'none',
zIndex: 1,
filter: 'blur(9px)', // macht die Kante weicher
transition: 'background 0.4s, width 0.2s, height 0.2s, opacity 0.3s'
});
this.catContainer.appendChild(this.glow);