我有一个 17 秒长的第二个动画,其中包含多个部分。完成后如何重复整个序列?我尝试repeatCount = "indefinite"
了每个属性<animate>
,但这只是让事情变得奇怪。这是我想要重复的动画,供参考或其他东西。
<rect x="185" y="300" width="300" height="400" fill="#666666">
<animate
attributeName="x"
from="185" to="145"
begin="5s"
dur="2s"
fill="freeze"
/>
<animate
attributeName="x"
from="145" to="185"
begin="9s"
dur="2s"
fill="freeze"
/>
<animate
attributeName="y"
from="300" to="340"
begin="11s"
dur="2s"
fill="freeze"
/>
<animate
attributeName="y"
from="340" to="300"
begin="15s"
dur="2s"
fill="freeze"
/>
</rect>