我在Safari中遇到了一个奇怪的渲染SVG问题。我有一个像圆形装载器一样的笔画动画圆圈,但由于某种原因,只要我添加stroke-dashoffset或stroke-dasharray,渲染就会关闭。
gif供参考:
ref circle http://askenielsen.dk/korrektur/refCircleRender.gif
一旦应用了其中一种样式,渲染就会变得更加锯齿状。
看起来并不多,但是不止一个圈子变得非常明显:
Multiple circles http://askenielsen.dk/korrektur/refCircles.gif
在视网膜显示器或IE,Firefox,Chrome等Safari中看起来很好。
圆圈缩放或笔触宽度不会改变问题,在两种浏览器中都不会。
SVG
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 134 134" enable-background="new 0 0 134 134" xml:space="preserve" width="134px" height="134px">
<path class="circle" d="M67,6c33.7,0,61,27.3,61,61c0,33.7-27.3,61-61,61c-33.7,0-61-27.3-61-61C6,33.3,33.3,6,67,6"/>
<path class="circle" d="M67,13c29.8,0,54,24.2,54,54s-24.2,54-54,54S13,96.8,13,67S37.2,13,67,13"/>
<path class="circle" d="M67,20c26,0,47,21,47,47s-21,47-47,47S20,93,20,67S41,20,67,20"/>
</svg>
CSS
.circle {
fill: none;
stroke: red;
stroke-width: 4px;
/* THE STYLE THAT MESSES UP THE RENDERING */
stroke-dasharray: 200px, 200px;
}
你可以test it here。
有什么想法吗?
答案 0 :(得分:2)
您可以尝试添加值shape-rendering
geometricPrecision
circle {
shape-rendering: geometricPrecision;
}
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/shape-rendering
以下SVG形状元素可以使用shape-rendering
:
<circle>
,<ellipse>
,<line>
,<path>
,<polygon>
,<polyline>
,<rect>
您可以使用CSS shape-rendering
属性控制抗锯齿的使用。将此属性设置为crispEdges
(在元素或SVG上作为一个整体)将关闭消除锯齿,从而产生清晰(如果有时是锯齿状)的线条。值geometricPrecision
将强调平滑边缘。