在Internet Explorer 8中动画svg

时间:2012-06-21 13:30:58

标签: animation svg

大家好我需要动画svg。它在chrome,firefox和safari中也能很好地工作,但自然它在Internet Explorer上不起作用。 这是我的代码

    <g>
        <path fill="none" d="M254.587,356.68
             c0-31.728,25.72-57.448,57.448-57.448c31.728,0,57.448,25.721,57.448,57.448c0,31.728-25.721,57.448-57.448,57.448
            C280.307,414.128,254.587,388.408,254.587,356.68">
            <animate id="cerchio" attributeName="stroke-dashoffset" from="0" to="0" dur="3s"
                begin="startAnimation1.click+1.0s"
                fill="freeze" keySplines="0 0 0 0" calcMode="linear"/>
        </path>
    </g>

我尝试使用svgweb,但似乎无法使用 stroke-dashoffset attributeName。 有什么想法吗?

1 个答案:

答案 0 :(得分:1)

IE9支持SVG。对IE8及以下版本使用VML

要检查您的浏览器是否支持SVG或VML,请查看 this 答案。