Python
- 3 ответа
- 0 вопросов
3
Вклад в тег
@keyframes color-me-in {
0% {
background: white;
}
50% {
background: blue;
}
100% {
background: white;
}
}
$('div').css('animation', 'color-me-in 5s')
table tr:last-child {
animation: color-me-in 5s;
}