10

正如标题所述,我有一个 svg 图像,但我无法在 safari 和歌剧中渲染它。但它在 Firefox 中运行良好。我找到了这篇文章

使用 Safari 显示 SVG 的 Doctype 问题

其中提到将内容更改为 xhtml。所以,我在我的html页面顶部添加了这个,

<meta http-equiv="Content-Type" content="application/xhtml+xml">

但它仍然不起作用。

我像这样在我的 JS 文件中嵌入 svg 图像

this.my_object.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><image xlink:href="img/gauge.png" width="122" height="127"/><g id="needle" transform="rotate(0,62,62)"><circle cx="62" cy="62" r="4" style="fill: #c00; stroke: none"/><rect transform="rotate(-130,62,62)" name="arrow"  x="58" y="38" width="8" height="24" style="fill: #c00; stroke: none"/><polygon transform="rotate(-130,62,62)" points="58,39,66,39,62,30,58,39" style="fill: #c00; stroke: none"/></g><text id="value" x="35" y="103" focusable="false" editable="no" style="stroke:none; fill:#fff; font-family: monospace; font-size: 12px"></text></svg>';

这可能是原因吗?我不是通过传统机制来调用它。

我也在此处粘贴 svg 代码,

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <g name="gauge" width="122px" height="127px">
        <image xlink:href="gauging.png" width="122" height="127"/>
    <circle id="led" cx="39" cy="76" r="5" style="fill: #999; stroke: none">
        <animateColor id="ledAnimation" attributeName="fill" attributeType="css" begin="0s" dur="1s"
        values="none;#f88;#f00;#f88;none;" repeatCount="0"/>
    </circle>
        <g id="needle" transform="rotate(0,62,62)">
            <circle cx="62" cy="62" r="4" style="fill: #c00; stroke: none"/>
            <rect transform="rotate(-130,62,62)" name="arrow"  x="58" y="38" width="8" height="24" style="fill: #c00; stroke: none"/>
            <polygon transform="rotate(-130,62,62)" points="58,39,66,39,62,30,58,39" style="fill: #c00; stroke: none"/>
        </g>
        <text id="value" x="51" y="98" focusable="false" editable="no" style="stroke:none; fill:#fff; font-family: monospace; font-size: 12px"></text>
    </g>
</svg>

任何人都可以提出这个问题吗?

4

2 回答 2

6

对于未来的用户:找到问题的原因。这篇文章Safari embeded SVG doctype的公认答案解释了这个问题。

问题的解决方案:

除此之外,我配置了我的 web.config 文件以添加

<staticContent><mimeMap fileExtension=".svg" mimeType="image/svg+xml" /></staticContent>

服务器应发送正确的 Content-Type 标头。

问题解决了!:)

于 2012-08-18T00:12:36.097 回答
0

我最近遇到了这个问题,发现因为我的多边形是自终止的,Safari 6.0.2 不会渲染它们。例如:

不起作用:

<polygon points='-3.172,-1.758 -6.208,-4.793 -8,-3 -8,-8 -3,-8 -4.792,-6.207 -1.757,-3.173'>

作品:

<polygon points='-3.172,-1.758 -6.208,-4.793 -8,-3 -8,-8 -3,-8 -4.792,-6.207 -1.757,-3.173'/>
于 2013-03-21T22:29:52.497 回答