Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

W3.CSS 进度条


进度条可以用来显示用户在某个流程中的进度

20%


基本进度条

一个普通的 <div> 元素可以用来制作进度条。

CSS 的 width 属性可以用来设置进度条的高度和宽度。

示例

<div class="w3-border">
  <div class="w3-grey" style="height:24px;width:20%"></div>
</div>

自己尝试一下 »


进度条宽度

使用 CSS 的 width 属性(从 0 到 100%)来更改进度条的宽度



示例

<div class="w3-light-grey">
  <div class="w3-grey" style="height:24px;width:50%"></div>
</div>

自己尝试一下 »



进度条颜色

使用 w3-color 类来更改进度条的颜色



示例

<div class="w3-light-grey">
  <div class="w3-blue" style="width:75%"></div>
</div>

自己尝试一下 »


进度条标签

w3-container 元素内添加文本,可以给进度条添加标签。

使用 w3-center 类来居中标签。如果省略,标签将左对齐。

25%

50%

75%

示例

<div class="w3-light-grey">
  <div class="w3-container w3-green w3-center" style="width:25%">25%</div>
</div>

自己尝试一下 »


进度条文本大小

使用 w3-size 类来更改容器中的文本大小

50%

50%

50%

示例

<div class="w3-light-grey w3-xlarge">
  <div class="w3-container w3-green" style="width:50%">50%</div>
</div>

自己尝试一下 »


进度条内边距

使用 w3-padding 类来给容器添加内边距。

25%

25%

25%

示例

<div class="w3-light-grey">
  <div class="w3-container w3-red w3-padding w3-center" style="width:25%">25%</div>
  </div>
</div>

自己尝试一下 »


圆角进度条

使用 w3-round 类来给进度条添加圆角

25%

25%

25%

示例

<div class="w3-light-grey w3-round">
  <div class="w3-container w3-round w3-blue" style="width:25%">25%</div>
</div>

自己尝试一下 »


动态进度条

使用 JavaScript 来创建一个动态进度条


示例

<div class="w3-light-grey">
  <div id="myBar" class="w3-container w3-green" style="height:24px;width:1%"></div>
</div>

<button class="w3-button w3-light-grey" onclick="move()">点击我</button>

<script>
function move() {
  var elem = document.getElementById("myBar");
  var width = 1;
  var id = setInterval(frame, 10);
  function frame() {
    if (width >= 100) {
      clearInterval(id);
    } else {
      width++;
      elem.style.width = width + '%';
    }
  }
}
</script>

自己尝试一下 »


带标签的动态进度条

居中标签

示例

20%

自己尝试一下 »

左对齐标签

示例

20%

自己尝试一下 »

进度条外部的标签

示例

20%

自己尝试一下 »

另一个例子(高级)

示例

已上传 0 张照片,共 10 张

自己尝试一下 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.