在尝试在旧的 IE 浏览器中渲染 SVG 时,我使用了 svgweb 项目。最近我遇到了 svgweb 中的错误 585。 https://code.google.com/p/svgweb/issues/detail?id=585&q=visibility
在以下示例中,矩形在 IE 中保持隐藏状态,但在一秒钟后在 Chrome 中显示。
<set xlink:href="#testRect" attributeName="visibility" attributeType="XML" begin="1s" end="2s" from="hidden" to="visible" fill="freeze"/>
<rect id="testRect" x="0" y="100" width="300" height="150" fill="#A68064" visibility="hidden" />