Bootstrap|Bootstrap 基本进度条

基本进度条
除了默认的蓝色进度条之外,Bootstrap还为进度条提供了两组情景样式类,用来设置进度条的颜色,以便在不同上下文中搭配合适的色彩。
一组情景类是 .progress-info、.progress-success、.progress-warning、.progress-danger,另一组情景类是 .bar-info、.bar-success、.bar-warning、.bar-danger,它们都分别用来创建蓝色、绿色、黄色或红色的进度条。
两组情景类得到的效果完全相同,只是 .progress-* 类要应用于进度条的容器,而 .bar-* 类要应用于进度条。如:


  1. class="progress progress-info">
  2. class="bar" style="width: 20%">
  3. class="progress progress-success">
  4. class="bar" style="width: 40%">
  5. class="progress progress-warning">
  6. class="bar" style="width: 60%">
  7. class="progress progress-danger">
  8. class="bar" style="width: 80%">
【Bootstrap|Bootstrap 基本进度条】或:

  1. class="progress">
  2. class="bar bar-info" style="width: 20%">
  3. class="progress">
  4. class="bar bar-success" style="width: 40%">
  5. class="progress">
  6. class="bar bar-warning" style="width: 60%">
  7. class="progress">
  8. class="bar bar-danger" style="width: 80%">
效果如图 4?57所示:
Bootstrap|Bootstrap 基本进度条
文章图片
图4-57 Bootstrap进度条的颜色
关于作者
歪脖先生,十五年以上软件开发经验,酷爱Web开发,精通 HTML、CSS、JavaScript、jQuery、JSON、Python、Less、Bootstrap等,著有《HTML宝典》、《揭秘CSS》、《Less简明教程》、《JSON教程》、《Bootstrap2用户指南》、《Bootstrap3实用教程》,并全部在 GitHub 上开源。

    推荐阅读