我制作动画SVG饼图。基本上我有两个SVG元素,第一个获得border-radius
50%
,第二个是我填充到特定值的圆。最后,这使得一个圆圈位于另一个圆圈之上,它们都具有相同的尺寸。
有某种SVG别名似乎很难摆脱。它在顶部,左侧,底部和右侧"角落处非常明显。这个圈子,至少在Google Chrome上。
这是HTML部分
<figure id="pie" data-percentage="60">
<div class="receiver"></div>
<svg width="200" height="200" class="chart" shape-rendering="geometricPrecision">
<circle r="50" cx="100" cy="100" class="pie" shape-rendering="geometricPrecision"/>
</svg>
</figure>
这是我的codepen,可以更准确地描述问题。我尝试了各种解决方案,包括形状渲染SVG属性但无济于事。
这是一个截图,别名不像在codepen中那样可见(至少对我而言)
答案 0 :(得分:1)
我之前也遇到过这个问题:Pixel edge on circle 当您使用border-radius修改元素时会发生这种情况 您可以在上面的链接答案中找到答案, 但如果你只使用/修改svg,我认为它在性能和美学方面都更好。
示例:
var circ = document.getElementsByClassName("pie2");
var text = document.getElementsByClassName("text");
text = text[0];
circ = circ[0];
var maxvalue = 320;
var value = maxvalue;
var stop = false;
function increase() {
if (value > 0) {
circ.style.strokeDashoffset = value--;
text.textContent = Math.abs(Math.floor((value / maxvalue) * 100) - 100) + "%";
} else {
clearInterval(intervalid);
}
}
var intervalid = setInterval(increase, 25);
.pie {
fill: none;
stroke: #222;
stroke-width: 99;
}
.pie2 {
fill: none;
stroke: orange;
stroke-width: 100;
stroke-dasharray: 320;
stroke-dashoffset: 320;
}
.text {
font-family: Arial;
font-weight: bold;
font-size: 2em;
}
<figure id="pie" data-percentage="90">
<svg width="200" height="200" class="chart" shape-rendering="geometricPrecision">
<circle r="50" cx="100" cy="100" class="pie" shape-rendering="geometricPrecision" />
<circle r="50" cx="100" cy="100" class="pie2" />
<text class="text" x="80" y="110">0%</text>
</svg>
</figure>