locked-animation

This commit is contained in:
2026-01-16 21:16:05 +01:00
parent 3e3fd6d7f4
commit a4117b782a
5 changed files with 24 additions and 21 deletions

View File

@@ -116,8 +116,3 @@
1px 1px 4px #FFF2; 1px 1px 4px #FFF2;
} }
} }
.locked.mino {
animation: locked-animation;
animation-duration: 0.2s;
}

View File

@@ -101,6 +101,17 @@ td {
} }
} }
@keyframes locked-animation {
from {
filter: saturate(50%) brightness(400%);
}
}
.locked.mino {
animation: locked-animation;
animation-duration: 0.2s;
}
td.trail-animation { td.trail-animation {
animation: trail-animation ease-out .3s; animation: trail-animation ease-out .3s;
} }

View File

@@ -92,8 +92,3 @@ tr.matrix td:not(.mino) {
border-color: white; border-color: white;
} }
} }
.locked.mino {
animation: locked-animation;
animation-duration: 0.2s;
}

View File

@@ -146,14 +146,3 @@ td#timeCell {
filter: brightness(50%) contrast(80%); filter: brightness(50%) contrast(80%);
opacity: 70%; opacity: 70%;
} }
@keyframes locked-animation {
from {
filter: saturate(50%) brightness(400%);
}
}
.locked.mino {
animation: locked-animation;
animation-duration: 0.2s;
}

View File

@@ -257,6 +257,19 @@ td.trail-animation { --h: 180deg; --s: 50%; --l: 90%; --a: 0.4; }
} }
} }
@keyframes locked-animation {
from {
--h: 0deg; --s: 0%; --l: 100%; --a: 1;
box-shadow: 0 0 10px hsla(180, 100%, 100%, 0.2);
}
}
.locked.mino::before,
.locked.mino::after {
animation: locked-animation;
animation-duration: .2s;
}
@keyframes cleared-line-animation { @keyframes cleared-line-animation {
from { from {
background-color: white !important; background-color: white !important;