css 实现圆形渐变进度条
AprilTong 9/23/2020 CSS
# css 实现圆形渐变进度条
实现思路
- 最外面是一个大圆(渐变色)
- 内部里面绘制两个半圆,将渐变的圆遮住(为了看起来明显,左右两侧颜色不一样,设置为灰蓝)
- 顺时针旋转右侧蓝色的半圆,下面渐变的圆会暴露出来,比如旋转 45 度(45/360 = 12.5%),再将蓝色的右半圆设为灰色,一个 12.5 的饼图就绘制出来了。
- 尝试旋转更大的度数,旋转 180 度之后右半圆重合,再旋转,度数好像越来越小,不符合我们需求,应该将右侧的圆回归原位,把其背景色设置成和底色一样的,顺时针旋转左侧的半圆,旋转度数计算,比如是 65%,度数为((65-50)*(360/100) = 54)
- 最后,最里面加上白色的小圆,放到正中间,用来显示百分数 如图所示:
注意到的属性:
- background-image, 用于为一个元素设置一个或者多个背景图像, 可以通过 linear-gradient 实现渐变色。
- clip, 定义了元素的哪一部分是可见的。clip 属性只适用于 position:absolute 的元素。
clip 可以设置的值:
- shape:如矩形:rect(top, right, bottom, left)
- auto:元素不裁剪(默认值)
# 下面代码是绘制 33%的圆
<div class="circle-bar">
<div class="circle-bar-left"></div>
<div class="circle-bar-right"></div>
<div class="mask">
<span class="percent">33%</span>
</div>
</div>
1
2
3
4
5
6
7
2
3
4
5
6
7
.circle-bar {
background-image: linear-gradient(#7affaf, #7a88ff);
width: 182px;
height: 182px;
position: relative;
}
.circle-bar-left {
background-color: #e9ecef;
width: 182px;
height: 182px;
clip: rect(0, 91px, auto, 0);
}
.circle-bar-right {
background-color: #e9ecef;
width: 182px;
height: 182px;
clip: rect(0, auto, auto, 91px);
transform: rotate(118.8deg);
}
.mask {
width: 140px;
height: 140px;
background-color: #fff;
text-align: center;
line-height: 0.2em;
color: rgba(0, 0, 0, 0.5);
position: absolute;
left: 21px;
top: 21px;
}
.mask > span {
display: block;
font-size: 44px;
line-height: 150px;
}
/*所有的后代都水平垂直居中,这样就是同心圆了*/
.circle-bar * {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
/*自身以及子元素都是圆*/
.circle-bar,
.circle-bar > * {
border-radius: 50%;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49