機械エンジニアもプログラミング

作業効率化とナレッジマネジメント

はてなブログでSVGアニメーションが動くか動作チェック

・HTML編集で張り付けた場合、消える場合がある。また、動く時と動かない時がある。謎だ

   

以下SVGアニメーションのソースコートです。

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewbox="0 0 200 200" width="400" height="400">
<g id="w_mill">
<rect x="100" y="100" width="40" height="20" fill="#c44">
</rect>
 </g>
  <animatetransform xlink:href="#w_mill" attributename="transform" type="rotate" from="0 120 110" to="360 120 110" dur="1s" repeatcount="indefinite"></animatetransform>
</svg>