我正在使用SVG创建图表。 我用三个圆形元素创建了它,并添加了一个路径(三角形)以形成空白。但我不怎么在底部隐藏几乎可见的细边框。 也许我做错了什么?
<svg viewBox="0 0 32 32">
<defs></defs>
<circle
r="16"
cx="16"
cy="16"
class="circle--progress"
stroke-dasharray="100 100"
></circle>
<circle
r="16"
cx="16"
cy="16"
fill="none"
stroke="#3FC364"
stroke-dasharray="100 100"
></circle>
<circle
r="16"
cx="16"
cy="16"
fill="none"
stroke="#EDBB40"
stroke-dasharray="66 100"
></circle>
<circle
r="16"
cx="16"
cy="16"
fill="none"
stroke="#FF8832"
stroke-dasharray="33 100"
></circle>
<path d="M16 16 L100 50 L200 -50 Z" fill="white"></path>
</svg>
<div class="text">
<div class="text__percentage">100%</div>
<div class="text__description">Sentiment<br />score</div>
</div>
</div>
.wrapper {
position: relative;
width: 400px;
height: 400px;
padding: 20px 0;
margin: 0 auto;
}
svg {
width: 100%;
height: 100%;
border-radius: 50%;
transform: rotate(90deg);
}
circle {
fill: transparent;
stroke-width: 3;
}
.circle--progress {
fill: transparent;
stroke: #C4C4C4;
stroke-width: 32;
stroke-opacity: .25;
}
.text {
position: absolute;
z-index: 2;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: sans-serif;
text-align: center;
}
.text__percentage {
font-size: 60px;
font-weight: bold;
}
.text__description {
font-size: 18px;
font-weight: 500;
line-height: 16px;
}
{{1}}
答案 0 :(得分:1)
我假设您使用Google Chrome或类似的基于Blink或Webkit的浏览器来测试此SVG图像。在Mozilla Firefox或Microsoft Edge中打开页面不会显示您指出的细边框,因此这是浏览器的问题,而不是代码的问题。我建议将有关此问题的错误报告发送给Google。
同时,要解决所有浏览器(包括Chrome)的问题,请考虑使用SVG <clipPath>
元素,并将其应用于除白色三角形以外的所有形状。然后,在CSS中,删除border-radius
选择器中的svg
属性。
<svg viewBox="0 0 32 32">
<defs>
<clipPath id="circle-viewport">
<circle r="16" cx="16" cy="16" />
</clipPath>
</defs>
<circle
r="16"
cx="16"
cy="16"
class="circle--progress"
stroke-dasharray="100 100"
clip-path="url(#circle-viewport)"
></circle>
<circle
r="16"
cx="16"
cy="16"
fill="none"
stroke="#3FC364"
stroke-dasharray="100 100"
clip-path="url(#circle-viewport)"
></circle>
<circle
r="16"
cx="16"
cy="16"
fill="none"
stroke="#EDBB40"
stroke-dasharray="66 100"
clip-path="url(#circle-viewport)"
></circle>
<circle
r="16"
cx="16"
cy="16"
fill="none"
stroke="#FF8832"
stroke-dasharray="33 100"
clip-path="url(#circle-viewport)"
></circle>
<path d="M16 16 L100 50 L200 -50 Z" fill="white"></path>
</svg>
答案 1 :(得分:0)
问题似乎在于浏览器(Chrome,Safary或同一引擎上的其他浏览器)如何使用border-radius:50%
呈现svg。用圆形蒙版剪切没有帮助。
一种解决方案是使图形外观相同,而无需用border-radius
对其进行切割(遮盖)以使其看起来呈圆形。这将需要为彩色段欺骗圆的半径和笔划宽度:
<circle
r="15" <--
cx="16"
cy="16"
fill="none"
stroke="#3FC364"
stroke-dasharray="100 100"
></circle>
circle {
fill: transparent;
stroke-width: 2; <--
}
并使进度圆适合图形的所需圆:
<circle
r="8" <--
cx="16"
cy="16"
class="circle--progress"
stroke-dasharray="100 100"
></circle>
.circle--progress {
fill: transparent;
stroke: #C4C4C4;
stroke-width: 16; <-- 8 radius + 8 half stroke width= 16 visible radius
stroke-opacity: .25;
}
查看完整示例:https://codepen.io/anon/pen/zeogLV
如果需要border-radius
来使图形与背景更好地融合,请将其包裹在div中,然后将border-radius
应用于div。
请参见示例https://codepen.io/anon/pen/exgOvm?editors=1100
我改变了身体背景,因此剪裁更加清晰