# animate

The SVG animate element provides a way to animate an attribute of an element over time.

Usually, this element is created with:

const animate = parentElement.add('animate')

It's possible to create it as a disconnected element with gySVG('animate') and attach it to the SVG document with .attachTo().

More info: mdn (opens new window) | w3c (opens new window)