Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
486 views
in Technique[技术] by (71.8m points)

SVG怎么制作半圆环形进度条?

image

image
如图,我只想要上半部分,该怎么改?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
<svg width="200" height="200">
    <circle
        cx="100"
        cy="100"
        r="50"
        stroke="#d1d3d7"
        stroke-width="5"
        fill="none"
        stroke-dasharray="158"
        stroke-dashoffset="-158"
        stroke-linecap="round"
    />
    <circle
        cx="100"
        cy="100"
        r="50"
        stroke="#00a5e0"
        stroke-width="5"
        fill="none"
        stroke-dasharray="50 158" #这里比例即为进度条比例
        stroke-dashoffset="-158"
        stroke-linecap="round"
    />
</svg>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...