2021-10-26 21:38:05 +03:00
|
|
|
@keyframes foo { /* ... */ }
|
|
|
|
@keyframes "foo" { /* ... */ }
|
|
|
|
@keyframes foo { /* ... */ }
|
|
|
|
|
|
|
|
@keyframes slidein {
|
|
|
|
from {
|
|
|
|
transform: translateX(0%);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: translateX(100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes identifier {
|
|
|
|
0% { top: 0; left: 0; }
|
|
|
|
30% { top: 50px; }
|
|
|
|
68%, 72% { left: 50px; }
|
|
|
|
100% { top: 100px; left: 100%; }
|
|
|
|
}
|
2022-01-21 04:55:49 +03:00
|
|
|
|
|
|
|
@keyframes FOO {}
|
|
|
|
@keyframes "initial" {}
|
|
|
|
@keyframes "None" {}
|
2022-02-04 08:10:35 +03:00
|
|
|
@keyframes slide-right {
|
|
|
|
|
|
|
|
from {
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
margin-left: 110px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
opacity: 0.9;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
margin-left: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slidein-up {
|
|
|
|
fRoM {
|
|
|
|
transform: translateX(0%);
|
|
|
|
}
|
|
|
|
|
|
|
|
tO {
|
|
|
|
transform: translateX(100%);
|
|
|
|
}
|
|
|
|
}
|