当前位置:   article > 正文

纯css进度条,简单美观实用。

纯css进度条,简单美观实用。

在这里插入图片描述

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;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

html:在style里给 “–precent”赋值,就能显示对应百分比。

       <div class="card-progress-bar">
          <div class="bar" style="--precent:93;"></div>
      </div>
  • 1
  • 2
  • 3
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/241906
推荐阅读
相关标签
  

闽ICP备14008679号