1405881-1.html (536B)
1 <style type="text/css"> 2 #container { 3 height: 300px; 4 width: 300px; 5 } 6 #box { 7 height: 100px; 8 width: 100px; 9 background: red; 10 animation: 2s anim; 11 } 12 @keyframes anim { 13 from { 14 transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 10%, 10%, 0, 1); 15 } 16 to { 17 transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 40%, 40%, 0, 1); 18 } 19 } 20 21 </style> 22 <div id=container> 23 <div id=box></div> 24 </div>