以下のコードを参照してください。
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<clipPath id="curtainClip">
<rect id="clipRect" x="0" y="0" width="100" height="100"/>
</clipPath>
</defs>
<animate xlink:href="#clipRect"
attributeName="width"
dur="15s"
from="0"
to="100" />
<path clip-path="url(#curtainClip)" stroke="red" d="M 0 0 L 100 100"/>
</svg>
SVg animate 要素が IE ブラウザーで機能しない。どうすればこれを修正できますか? IE10 ブラウザのバグなのか、IE ブラウザで動作するようにコードを追加する必要があるのか。
以下のリンクを参考にしました。
SVG アニメーションを ie9 と firefox で動作させることができません
ありがとう、
シヴァ