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