Quantcast
Channel: Active questions tagged html - Stack Overflow
Viewing all articles
Browse latest Browse all 74239

How can I make a percentage circle like google?

$
0
0

I'm trying to make a percentage circle like on this picture:

enter image description here

I've tried to use this here but I'm not very happy. I'm not able to change the progress of the circle and all in all I'm not sure if this is the best idea I've head:

circle {
    stroke-dasharray: 326px;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-width: 4px;
    stroke: #000000;
    fill: none;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
<svg><circle r="52" cx="54" cy="54"></circle></svg>

Viewing all articles
Browse latest Browse all 74239

Trending Articles