css实现圆形渐变进度条效果的⽰例代码
实现思路
最外⾯是⼀个⼤圆(渐变⾊)
内部⾥⾯绘制两个半圆,将渐变的圆遮住(为了看起来明显,左右两侧颜⾊不⼀样,设置为灰蓝)
顺时针旋转右侧蓝⾊的半圆,下⾯渐变的圆会暴露出来,⽐如旋转 45 度(45/360 = 12.5%),再将蓝⾊的右半圆设为灰⾊,⼀个 12.5 的饼图就绘制出来了。
尝试旋转更⼤的度数,旋转 180 度之后右半圆重合,再旋转,度数好像越来越⼩,不符合我们需求,应该将右侧的圆回归原位,把其背景⾊设置成和底⾊⼀样的,顺时针旋转左侧的半圆,最后,最⾥⾯加上⽩⾊的⼩圆,放到正中间,⽤来显⽰百分数
如图所⽰:
注意到的属性:
background-image,⽤于为⼀个元素设置⼀个或者多个背景图像,可以通过 linear-gradient 实现渐变⾊。
clip,定义了元素的哪⼀部分是可见的。clip 属性只适⽤于 position:absolute 的元素。
下⾯代码是绘制 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>
.circle-bar {
background-image: linear-gradient(#7affaf, #7a88ff);
width: 182px;
height: 182px;
position: relative;
}
.circle-bar-left {
css实现垂直水平居中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%;
}
到此这篇关于css 实现圆形渐变进度条效果的⽰例代码的⽂章就介绍到这了,更多相关css 渐变进度条内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章,希望⼤家以后多多⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论