Участник:VTCobaltblood/Matt.css: различия между версиями
Перейти к навигации
Перейти к поиску
>VTCobaltblood мНет описания правки |
>VTCobaltblood мНет описания правки |
||
Строка 1: | Строка 1: | ||
@keyframes a1 { | @keyframes a1 { | ||
0% {bottom: 2px;} | 0% {bottom: 2px;} | ||
25% {bottom: 10px;} | 25% {bottom: 5px;} | ||
50% {bottom: 10px;} | |||
100% {bottom: | 75% {bottom: 5px;} | ||
100% {bottom: 2px;} | |||
} | |||
@keyframes a2 { | |||
0% {transform: rotate(360deg);} | |||
25% {transform: rotate(90deg);} | |||
50% {transform: rotate(180deg);} | |||
75% {transform: rotate(270deg);} | |||
100% {transform: rotate(360deg);} | |||
} | } | ||
.die { | .die { | ||
position: relative; | |||
animation: a1 2s linear 2s infinite normal; | |||
} | |||
.eid { | |||
animation: a2 2s linear 2s infinite normal; | |||
} | } |
Версия от 02:55, 14 июля 2019
@keyframes a1 {
0% {bottom: 2px;}
25% {bottom: 5px;}
50% {bottom: 10px;}
75% {bottom: 5px;}
100% {bottom: 2px;}
}
@keyframes a2 {
0% {transform: rotate(360deg);}
25% {transform: rotate(90deg);}
50% {transform: rotate(180deg);}
75% {transform: rotate(270deg);}
100% {transform: rotate(360deg);}
}
.die {
position: relative;
animation: a1 2s linear 2s infinite normal;
}
.eid {
animation: a2 2s linear 2s infinite normal;
}