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
"<animateTransform>"

Animates a transform attribute of an element over time.

Animates a transform attribute of an element over time.

The type attribute selects the transform function (translate, scale, rotate, skewX, skewY).

Example usage:

<rect width="100" height="100" fill="blue">
<animateTransform attributeName="transform" type="rotate"
from="0 50 50" to="360 50 50" dur="3s" />
</rect>