SVG animation


Animation of Scalable Vector Graphics, an open XML-based standard vector graphics format, is possible through various means:
Libraries have also been written as a shim to give current SVG-enabled browsers SMIL support. This method is also known as SVG+Time.
Because SVG supports Portable Network Graphics and JPEG raster images, it can be used to animate such images as an alternative to APNG and Multiple-image Network Graphics.

History

SVG animation elements were developed in collaboration with the World Wide Web Consortium Synchronized Multimedia Working Group, developers of the Synchronized Multimedia Integration Language, the first version of which was published in 1999. SVG 1.0 became a W3C Recommendation on 4 September 2001.
Certain web browsers added support for SVG animation during the 2000s, including Amaya as early as 2003, but SVG animation was only supported by widely used browsers beginning in the 2010s, notably by Firefox 4.
Internet Explorer supports ECMAScript animation, and its successor Microsoft Edge supports ECMAScript and CSS animations as of version 42.17134.
The SYMM Working Group, in collaboration with the SVG Working Group, has authored the SMIL Animation specification, which represents a general-purpose XML animation feature set.
SVG incorporates the animation features defined in the SMIL Animation specification and provides some SVG-specific extensions.

Examples

The following code snippets demonstrate three techniques to create animated SVG on compatible browsers. The relevant parts are highlighted in yellow.

SVG animation using SMIL



width="100%" height="100%" viewBox="-4 -4 8 8">
SVG animation using SMIL

attributeName="transform"
attributeType="XML"
type="rotate"
from="0"
to="360"
begin="0s"
dur="1s"
repeatCount="indefinite"/>


SVG animation using CSS



width="100%" height="100%" viewBox="-4 -4 8 8">
SVG animation using CSS

cx="0" cy="1" r="2" stroke="blue" fill="none"/>

SVG animation using ECMAScript



onload="rotate">
SVG animation using ECMAScript

cx="0" cy="1" r="2" stroke="green" fill="none"/>

Though the example above works, it is not the optimal implementation, the animation is limited to 50 frames per second. Using requestAnimationFrame provides better performance and can reach 60 FPS:

onload="init">
SVG animation using requestAnimationFrame



SMIL attributes to identify the target attribute

The following are the animation attribute which identify the target attribute for the given target element whose value changes over time.
attributeName = "" specifies the name of the target attribute. An XMLNS prefix may be used to indicate the XML namespace for the attribute. The prefix will be interpreted in the scope of the current animation element.
attributeType = "CSS | XML | auto" specifies the namespace in which the target attribute and its associated values are defined. CSS specifies that the value of ‘attributeName’ is the name of a CSS property defined as animatable in this specification. XML specifies that the value of ‘attributeName’ is the name of an XML attribute defined in the default XML namespace for the target element. The attribute must be defined as animatable in this specification. auto
The default value is 'auto'. The implementation should match the ‘attribute Name’ to an attribute for the target element. The implementation must first search through the list of CSS properties for a matching property name, and if none is found, search the default XML namespace for the element.
The MediaWiki wiki software automatically generates static, non-animated thumbnails of SVG images. Viewing the actual.svg image from each respective description page will show its animation in a compatible browser.

Libraries

There are several JavaScript libraries for working with SVG animation. An advantage to the use of such libraries is that these libraries often solve incompatibility issues in browsers through abstraction. Examples of libraries include Raphaël and Velocity.js