gtk/testsuite/reftests/linear-gradient-transition-to-other.css

17 lines
296 B
CSS
Raw Normal View History

2013-05-28 13:19:41 +00:00
@keyframes anim {
100% { background-image: url("green-20x20.png"); }
}
@keyframes ref {
100% { background-image: linear-gradient(to bottom, lime, lime); }
2013-05-28 13:19:41 +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;
}