17 lines
		
	
	
		
			285 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			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;
 | |
| }
 | 
