1
我可以動畫SVG圓圈嗎?動畫SVG圖像
<svg>
<circle id="orange-circle" r="30" cx="50" cy="50" fill="orange" />
<animate
xlink:href="#orange-circle"
attributeName="cx"
from="50"
to="450"
dur="1s"
fill="freeze"
repeatCount="indefinite" />
</svg>
同樣,我試圖動畫圖像:
<svg>
<image id="orange-circle" x="0" y="20" width="200" height="180" xlink:href="cat.png" />
<animate
xlink:href="#orange-circle"
attributeName="cx"
from="50"
to="450"
dur="1s"
fill="freeze"
repeatCount="indefinite" />
</svg>
我怎樣才能讓上面的代碼工作?
什麼似乎是實際問題?動畫是不是開始了?究竟是什麼與他們呢?有沒有可能發揮作用的周邊代碼? – dakab
看一個FAQ animate:https://css-tricks.com/transforms-on-svg-elements/ – KingRider