如何在屏幕上制作对象,在没有结束的情况下对角和反复移动?

时间:2018-04-06 12:02:49

标签: html html5

org.w3c.dom.Document

如何设置矩形动画以对角移动? 另一个问题是,如何使矩形重复移动(不计数)? 但是,由于能够回答这个问题。

1 个答案:

答案 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;
&#13;
&#13;