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アニメーションをご覧ください:https://css-tricks.com/transforms-on-svg-elements/ – KingRider