blob: 65fdb8d09ac579818d228f65f932210d0d80372b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@keyframes anim {
100% { background-image: url("green-20x20.png"); }
}
@keyframes ref {
100% { background-image: linear-gradient(to bottom, lime, lime); }
}
* {
background: linear-gradient(to bottom, red, red);
animation: anim steps(5,end) 20s;
}
#reference {
animation-name: ref;
}
|