gpt4 book ai didi

css - 具有三种不同边框颜色的圆圈

转载 作者:技术小花猫 更新时间:2023-10-29 11:26:59 25 4
gpt4 key购买 nike

我有一个带有一种边框颜色的圆圈的 CSS:

.circle {
border: 6px solid #ffd511;
border-radius: 30px;
-moz-border-radius: 30px;
-webkit-border-radius: 30px;
-khtml-border-radius: 30px;
width: 30px;
height: 18px;
line-height: 20px;
padding: 12px 6px;
text-align: center;
}
<div class="circle">17</div>

看起来像这样:

circle with one border color

我应该如何更改 CSS 以具有三种边框颜色 - 就像在时钟上一样:

  • 从 0 到 4 种颜色 #1
  • 4 到 8 种颜色 #2
  • 8 到 12 种颜色 #3

我敢肯定,它是可能的,元素 <canvas> ,但我没有成功。

最佳答案

您可以使用 inline svg 实现分成 3 个部分的圆形边框使用:

这是一个例子:

svg{width:30%;height:auto;}
<svg viewbox="0 0 10 10">
<defs>
<circle id="circle" cx="5" cy="5" r="4" stroke-width="0.5" fill="transparent" />
</defs>
<use xlink:href="#circle" stroke="pink" stroke-dasharray="0,2.09,8.38,30" />
<use xlink:href="#circle" stroke="green" stroke-dasharray="0,10.47,8.38,30" />
<use xlink:href="#circle" stroke="orange" stroke-dasharray="2.09,16.75,6.3" />
</svg>

编辑

要在圆圈内添加文本,您可以使用 svg text element :

svg{width:30%;height:auto;}
<svg viewbox="0 0 10 10">
<defs>
<circle id="circle" cx="5" cy="5" r="4" stroke-width="0.5" fill="transparent" />
</defs>
<use xlink:href="#circle" stroke="pink" stroke-dasharray="0,2.09,8.38,30" />
<use xlink:href="#circle" stroke="green" stroke-dasharray="0,10.47,8.38,30" />
<use xlink:href="#circle" stroke="orange" stroke-dasharray="2.09,16.75,6.3" />
<text x="5" y="6.5" text-anchor="middle" font-size="5">17</text>
</svg>

关于css - 具有三种不同边框颜色的圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37206635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com