scale-animation-on-svg-ref.html (397B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Animating the "scale" property on an SVG element</title> 5 <link rel="help" href="https://drafts.csswg.org/css-transforms-2/#individual-transforms"> 6 7 <style> 8 9 svg { 10 width: 400px; 11 height: 400px; 12 } 13 14 rect { 15 width: 100px; 16 height: 100px; 17 transform-origin: top left; 18 scale: 2; 19 } 20 21 </style> 22 </head> 23 <body> 24 <svg><rect></rect></svg> 25 </body> 26 </html>