1706157.html (359B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 @keyframes animation { 6 to { 7 left: 100px; 8 } 9 } 10 * { 11 animation: animation linear 1s; 12 } 13 #target { 14 animation-timing-function: steps(2965566999, jump-both); 15 } 16 </style> 17 </head> 18 <div id="target"></div> 19 </html>