gtk2/testsuite/reftests/linear-gradient-transition-to-other.css
2013-05-28 15:24:04 +02:00

17 lines
285 B
CSS

@keyframes anim {
100% { background-image: url("green-20x20.png"); }
}
@keyframes ref {
100% { background-image: linear-gradient(to bottom, lime); }
}
* {
background: linear-gradient(to bottom, red);
animation: anim steps(5,end) 20s;
}
#reference {
animation-name: ref;
}