SVG <animateTransform> Element Last Updated : 31 Mar, 2022 Comments Improve Suggest changes Like Article Like Report SVG stands for Scalable Vector Graphics. It defines vector-based graphics and animation like in HTML Canvas. The animateTransform element animates a transformation attribute on its target element, thereby allowing animations to control translation, scaling, rotation, and/or skewing. Syntax: <animateTransform attributeName=''transform''/> Attribute: from: Initial value of the attribute that will be modified during the animation.to: Final value of the attribute that will be modified during the animation.type: It defines the type of transformation, whose values change over time.dur: Duration of the animation.repeatCount: The number of times an animation will take place.repeatDur: The total duration for repeating an animation.attributeName: The name of the CSS property that is going to be animated. Example: HTML <!DOCTYPE html> <html> <body> <svg width="120" height="120"> <polygon points="60,30 90,90 30,90"> <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 60 70" to="360 60 70" dur="10s" repeatCount="indefinite" /> </polygon> </svg> </body> </html> Supported Browsers:ChromeEdgeFirefoxSafariOpera Comment More infoAdvertise with us R rbbansal Follow Improve Article Tags : Web Technologies HTML HTML-SVG SVG-Element Explore HTML Tutorial 11 min read BasicsHTML Introduction 6 min read HTML Editors 5 min read HTML Basics 7 min read HTML Structure & ElementsHTML Elements 5 min read HTML Attributes 8 min read HTML Headings 4 min read HTML Paragraphs 5 min read HTML Text Formatting 4 min read HTML Block and Inline Elements 3 min read HTML Charsets 4 min read HTML ListHTML Lists 5 min read HTML Ordered Lists 5 min read HTML Unordered Lists 4 min read HTML Description Lists 3 min read HTML Visuals & MediaHTML Colors 11 min read HTML Links Hyperlinks 3 min read HTML Images 7 min read HTML Favicon 4 min read HTML Video 4 min read HTML Layout & DesignHTML Tables 10 min read HTML Iframes 4 min read HTML Layout 4 min read HTML File Paths 3 min read HTML Projects& Advanced TopicsHTML Forms 5 min read HTML5 Semantics 6 min read HTML URL Encoding 4 min read HTML Responsive Web Design 11 min read Top 10 Projects For Beginners To Practice HTML and CSS Skills 8 min read HTML Tutorial ReferencesHTML Tags - A to Z List 15+ min read HTML Attributes Complete Reference 8 min read HTML Global Attributes 5 min read HTML5 Complete Reference 8 min read HTML5 MathML Complete Reference 3 min read HTML DOM Complete Reference 15+ min read HTML DOM Audio/Video Complete Reference 2 min read SVG Element Complete Reference 5 min read SVG Attribute Complete Reference 8 min read SVG Property Complete Reference 7 min read HTML Canvas Complete Reference 4 min read Like