svg-transform-animation.html (532B)
1 <!DOCTYPE html> 2 <title>Transform animation on SVG element with zoom</title> 3 <link rel="help" href="https://drafts.csswg.org/css-animations-1/"> 4 <link rel="match" href="svg-transform-animation-ref.html"> 5 <style> 6 @keyframes transform { 7 from {transform: translate(100px, 100px)} 8 to {transform: translate(100px, 100px)} 9 } 10 </style> 11 <svg width="200" height="200"> 12 <rect x="100" y="100" width="100" height="100" fill="red"/> 13 <rect style="animation: transform 2s infinite" x="0" y="0" width="100" height="100" fill="green"/> 14 </svg>