The previous commit looked cool. Trying to add spin to the tentacles
All checks were successful
On Push Deploy / deploy (push) Successful in 21s

This commit is contained in:
Johnny322
2026-02-10 16:57:08 +01:00
parent 8232dad1e4
commit 41c22fe774

View File

@@ -422,6 +422,10 @@ audio.hidden-audio {
pointer-events: none;
}
.pulse-tentacles.playing {
animation: tentacleSpin 12s linear infinite;
}
.pulse-tentacles .tentacle {
position: absolute;
left: 50%;
@@ -480,6 +484,15 @@ audio.hidden-audio {
}
}
@keyframes tentacleSpin {
from {
transform: translate(-50%, -50%) scale(calc(1 + var(--pulse, 0) * 0.9)) rotate(0deg);
}
to {
transform: translate(-50%, -50%) scale(calc(1 + var(--pulse, 0) * 0.9)) rotate(360deg);
}
}
.player-empty {
color: rgba(255, 255, 255, 0.6);