org.w3c.dom.Document
如何设置矩形动画以对角移动? 另一个问题是,如何使矩形重复移动(不计数)? 但是,由于能够回答这个问题。
答案 0 :(得分:0)
你可以使用repeatCount ="无限期"像这样:
<svg width="100%" height="250">
<rect width="150" height="150" fill="orange" x="140">
<animate attributeName="x" from="0" to="100%" dur="3s" fill="freeze" repeatCount="indefinite"></animate>
</rect>
</svg>
&#13;