2013-05-28 13:19:41 +00:00
|
|
|
@keyframes anim {
|
|
|
|
100% { background-image: url("green-20x20.png"); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes ref {
|
2016-07-28 15:12:25 +00:00
|
|
|
100% { background-image: linear-gradient(to bottom, lime, lime); }
|
2013-05-28 13:19:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
2016-07-28 15:12:25 +00:00
|
|
|
background: linear-gradient(to bottom, red, red);
|
2013-05-28 13:19:41 +00:00
|
|
|
animation: anim steps(5,end) 20s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#reference {
|
|
|
|
animation-name: ref;
|
|
|
|
}
|