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%">
  • class="progress progress-success">
  •   class="bar" style="width: 40%">
  • class="progress progress-warning">
  •   class="bar" style="width: 60%">
  • class="progress progress-danger">
  •   class="bar" style="width: 80%">
  • 或:

     
      
    1. class="progress">
    2.   class="bar bar-info" style="width: 20%">
  • class="progress">
  •   class="bar bar-success" style="width: 40%">
  • class="progress">
  •   class="bar bar-warning" style="width: 60%">
  • class="progress">
  •   class="bar bar-danger" style="width: 80%">
  • 效果如图 4‑57所示:

    Bootstrap 基本进度条_第1张图片图4-57 Bootstrap进度条的颜色

    关于作者

    歪脖先生,十五年以上软件开发经验,酷爱Web开发,精通 HTML、CSS、JavaScript、jQuery、JSON、Python、Less、Bootstrap等,著有《HTML宝典》、《揭秘CSS》、《Less简明教程》、《JSON教程》、《Bootstrap2用户指南》、《Bootstrap3实用教程》,并全部在 GitHub 上开源。

    你可能感兴趣的:(Bootstrap,教程)