SVG不透明度在Safari中不起作用

时间:2016-03-09 08:31:33

标签: svg safari

我有一个不透明的背景图片。它在firefox和Chrome中运行良好,但它的不透明性在Safari中不起作用。无论如何要解决这个问题还是Safari不支持?

这是我的SVG

<svg version="1.1"
 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"    xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
 x="0px" y="0px" width="640.2px" height="1136px" viewBox="0 0 640.2 1136" style="enable-background:new 0 0 640.2 1136;"
 xml:space="preserve">

<style type="text/css">
.st0{fill:#5AAAFA;}
.st1{opacity:4.000000e-02;}
</style>
<defs>
</defs>
<polygon id="XMLID_18_" class="st0" points="640.2,1136 0.2,1136 0.2,0 640.2,0 640.2,367.1 "/>
<path id="XMLID_17_" class="st1" d="M0,810.6c0.1,108.5,0.2,216.9,0.2,325.4h640c-  0.4-320.4-0.7-640.8-1.1-961.2
C426.1,386.7,213.1,598.7,0,810.6z"/>
</svg>

谢谢!

1 个答案:

答案 0 :(得分:1)

显然有些浏览器使用科学记数法编写的数字有问题(例如4.000000e-02而不是0.04)。这是一个错误,因为scientific number representations are permitted by the CSS standard

但是有一个简单的解决方法;只是改变这个:

opacity:4.000000e-02;

到此:

opacity:0.04;

它应该有用。