Windows 8上的Safari 5反转了SVG上的所有文本元素

时间:2013-11-12 13:43:43

标签: javascript svg safari d3.js

我有一个应用程序,我使用D3.js(版本3)创建SVG图表。这适用于所有浏览器,除了Safari(Windows 8.1版本5.1.7)。 Safari将所有文本元素颠倒显示,y值反转。

另一个事实是,当我保存生成的SVG代码然后在Safari中加载它时,一切都很好。

有谁知道这是一个已知的问题/错误?有没有办法轻松解决这个问题,或者我应该在我的JS文件中为Safari添加一些特殊代码。

为了指定我的问题,我添加了两个屏幕截图,最重要的是它在Safari中的显示方式以及如何显示它。

Safari浏览器:

Safari http://www.leonhooijer.nl/Safari.png

其他浏览器:

Should Be http://www.leonhooijer.nl/Chrome.png

此处还生成了SVG代码:

<svg width="473" height="357" viewBox="0 0 530 400" perserveAspectRatio="xMinYMid" class="chart" style="margin-left:8.5px">
<g class="arc" transform="translate(265,200)">
    <path d="M9.490699242123424e-15,-155A155,155 0 0,1 87.92411853567042,127.64932189293204L0,0Z" class="first_group"></path>
    <path d="M87.92411853567042,127.64932189293204A155,155 0 0,1 -79.92927812076182,132.80177144561705L0,0Z" class="second_group"></path>
    <path d="M-79.92927812076182,132.80177144561705A155,155 0 0,1 -152.74492900530055,26.34362661376928L0,0Z" class="third_group"></path>
    <path d="M-152.74492900530055,26.34362661376928A155,155 0 0,1 -140.44015392173435,-65.58630319235537L0,0Z" class="fourth_group"></path>
    <path d="M-140.44015392173435,-65.58630319235537A155,155 0 0,1 -97.60019756608148,-120.41262988184363L0,0Z" class="fifth_group"></path>
    <path d="M-97.60019756608148,-120.41262988184363A155,155 0 0,1 -64.84357257048977,-140.78462663336373L0,0Z" class="sixth_group"></path>
    <path d="M-64.84357257048977,-140.78462663336373A155,155 0 0,1 -2.847209772637027e-14,-155L0,0Z" class="seventh_group"></path>
</g>
<g class="lbls" transform="translate(265,200)">
    <line x1="0" x2="0" y1="-158" y2="-170" class="first_group" transform="rotate(72.72057342529297)"></line>
    <line x1="0" x2="0" y1="-158" y2="-170" class="second_group" transform="rotate(178.24179077148438)scale(1,1)"></line>
    <line x1="0" x2="0" y1="-158" y2="-170" class="third_group" transform="rotate(235.62850952148438)scale(1,1)"></line>
    <line x1="0" x2="0" y1="-158" y2="-170" class="fourth_group" transform="rotate(-82.37631225585939)"></line>
    <line x1="0" x2="0" y1="-158" y2="-170" class="fifth_group" transform="rotate(-51.996795654296896)scale(0.9999999999999999,0.9999999999999999)"></line>
    <line x1="0" x2="0" y1="-158" y2="-170" class="sixth_group" transform="rotate(-31.87829589843751)"></line>
    <line x1="0" x2="0" y1="-158" y2="-170" class="seventh_group" transform="rotate(-12.365081787109395)"></line>
    <text transform="translate(170.92128845655768,-53.16872344104387)" class="value first_group" dy="-10" text-anchor="beginning">40.4%</text>
    <text transform="translate(5.492020303912323,178.91572796426092)" class="value second_group" dy="2" text-anchor="beginning">18.2%</text>
    <text transform="translate(-147.74560637652337,101.05560744675884)" class="value third_group" dy="2" text-anchor="end">13.7%</text>
    <text transform="translate(-177.41777441646744,-23.74728028864517)" class="value fourth_group" dy="-10" text-anchor="end">9.7%</text>
    <text transform="translate(-141.0477648281888,-110.21128815585067)" class="value fifth_group" dy="-10" text-anchor="end">7.2%</text>
    <text transform="translate(-94.53290710464508,-152.00174168194437)" class="value sixth_group" dy="-10" text-anchor="end">4.0%</text>
    <text transform="translate(-38.331103265489965,-174.84772381260885)" class="value seventh_group" dy="-10" text-anchor="end">6.9%</text>
    <text transform="translate(170.92128845655768,-53.16872344104387)" class="units first_group" dy="8" text-anchor="beginning">0</text>
    <text transform="translate(5.492020303912323,178.91572796426092)" class="units second_group" dy="20" text-anchor="beginning">1</text>
    <text transform="translate(-147.74560637652337,101.05560744675884)" class="units third_group" dy="20" text-anchor="end">2</text>
    <text transform="translate(-177.41777441646744,-23.74728028864517)" class="units fourth_group" dy="8" text-anchor="end">3</text>
    <text transform="translate(-141.0477648281888,-110.21128815585067)" class="units fifth_group" dy="8" text-anchor="end">4</text>
    <text transform="translate(-94.53290710464508,-152.00174168194437)" class="units sixth_group" dy="8" text-anchor="end">5</text>
    <text transform="translate(-38.331103265489965,-174.84772381260885)" class="units seventh_group" dy="8" text-anchor="end">6+</text>
</g>

修改

我在this网站上发现Safari中不支持该视图。这会导致问题吗?我使用视图框来处理页面大小调整。

2 个答案:

答案 0 :(得分:2)

我找到了解决方案,因为它也发生在我身上。

    -webkit-font-smoothing: antialiased; 

这是在我的CSS的body标签中设置的,并删除它,修复它。 我认为渲染抗锯齿文本存在问题。

因此,如果您没有使用该CSS命令,请尝试使用以下方法禁用字体平滑:

    -webkit-font-smoothing: none;

希望有所帮助。

答案 1 :(得分:-1)

据我所知,因为CSS3已用于D3中的转换,因为你需要WEBkit,如W3C所示。

http://www.w3schools.com/css/css3_2dtransforms.asp

因此出现了这个问题。

关于此翻译存在很多问题。

https://groups.google.com/forum/#!topic/d3-js/WqGkpYKpXfc

我仍然找不到合适的方法来解决它。