Donner SVG Editor & Engine
SVG-native editor and embeddable SVG2 + CSS3 engine in C++20, with GPU (WebGPU) and compact CPU renderers, built for correctness, security, and performance.
Loading...
Searching...
No Matches
"<animate>"

Animates an attribute of an element over time with interpolation.

Animates an attribute of an element over time with interpolation.

<animate> supports multiple interpolation modes (linear, discrete, paced, spline) and can animate numeric values, colors, lengths, and other interpolable types.

Example usage:

<rect width="100" height="100" fill="red">
<animate attributeName="opacity" from="1" to="0" dur="2s" />
</rect>