赞
踩
css
.card-progress-bar{ width: 80%; } .bar{ height: 20px; width: 90%; background-color: #D7E4EF; } .bar::before{ display: block; counter-reset: progress var(--precent); content: counter(progress) '%'; width: calc(1% * var(--precent)); color: #D7E4EF; background-color: #4193F7; text-align: center; white-space: nowrap; overflow: hidden; }
html:在style里给 “–precent”赋值,就能显示对应百分比。
<div class="card-progress-bar">
<div class="bar" style="--precent:93;"></div>
</div>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。