Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<style>
@keyframes bgcolor {
0% { background: Field; }
100% { background: green; }
}
.target {
animation: bgcolor 50ms;
width: 100px;
height: 100px;
}
</style>
<div class="target"></div>