1328535-1.html (420B)
1 <!doctype html> 2 <html> 3 <style> 4 @keyframes anim { 5 from { box-shadow: none; } 6 to { box-shadow: rgba(120, 120, 120, 0.5) 10px 10px 10px 0px; } 7 } 8 #target { 9 width: 100px; height: 100px; 10 /* 11 * Use negative delay to shift to the point that the cubic-bezier function 12 * produces a value out of range of [0, 1]. 13 */ 14 animation: anim 1s -0.02s cubic-bezier(0, -0.5, 0, 0) paused; 15 } 16 </style> 17 <div id="target"></div>