請參考下面的代碼。SVG動畫無法在IE9/IE10中使用,但可在Firefox和Chrome中使用
<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瀏覽器中工作。
我已提及以下鏈接。
Can't make SVG animation work with ie9 and firefox
感謝,
溼婆
你是否在IE的調試模式下得到任何javascript錯誤? – 2013-03-08 08:55:12
IE中沒有javascript錯誤。顯示svg組件,但動畫只在IE中不起作用。 – SivaRajini 2013-03-08 08:59:49