六、SVG
一、SVG制作扇形

1、html代码
<svg viewBox = "0 0 32 32">
<circle r="16" cx="16" cy="16" />
</svg>
2、css代码
svg {
width: 100px;height: 100px;
transform: rotate(-90deg);
background: yellowgreen;
border-radius: 50%;
}
circle {
fill: gold;
stroke: #333;
stroke-width: 32;
stroke-dasharray: 45 100;
}

浙公网安备 33010602011771号