具体效果如下
代码如下:
<div class="bg">
<span class="text">0%</span>
<div class="progress" style="width: 0%;">
<span class="text">0%</span>
</div>
</div>
.text {
position: absolute;
left: 125px;
transform: translateX(-50%);
font-size:25px;
}
css代码如下:
.bg {
background: #fff;
border-radius: 5px;
border: 1px solid #6cf;
width : 250px;
height: 50px;
line-height: 50px;
position: relative;
}
.bg > .text {
color: #6cf;
}
.progress {
position: absolute;
height: 100%;
background: #6cf;
overflow: hidden;
}
.progress > .text {
color: #fff;
}
|
-
2.png
(18.72 KB, 下载次数: 16)
|