Участник:VTCobaltblood/Test.css: различия между версиями
Перейти к навигации
Перейти к поиску
>VTCobaltblood Нет описания правки |
>VTCobaltblood мНет описания правки |
||
Строка 3: | Строка 3: | ||
.tup{ | .tup{ | ||
animation: a 10s linear | width: 1000px; | ||
height: 100px; | |||
animation: a 10s linear; | |||
animation-play-state: paused; | animation-play-state: paused; | ||
} | } |
Версия от 22:47, 15 июля 2019
@keyframes a {
to: { transform: scale(300, 300); }
.tup{
width: 1000px;
height: 100px;
animation: a 10s linear;
animation-play-state: paused;
}
.tup:hover{
animation-play-state: running;
}