1<?xml version="1.0" encoding="UTF-8"?> 2<svg xmlns="http://www.w3.org/2000/svg" width="800px" height="600px"> 3 <g transform="translate(10, 300)"> 4 <rect fill="red" x="0" y="0" width="100" height="100"> 5 <animateTransform attributeName="transform" type="scale" to="5" dur="5s" /> 6 </rect> 7 </g> 8</svg> 9 10