<svg width="1000" height="100">
<circle id="orange-circle" r="30" cx="50" cy="50" fill="orange" />
<animate
xlink:href="#orange-circle"
attributeName="cx"
from="50"
to="900"
dur="2s"
begin="0s"
values="50; 990; 760; 900"
keyTimes="0; 0.7; 0.8; 1"
fill="freeze"
id="circ-anim"/>
</svg>
Я попытался написать это вместо строки с кружком:
<text id="textAnimation" x="25" y="25" font-size:24">Learn Now!</text>
, но текст не имеет анимации (да, я изменил id # orange-circle на#textAnimation)