进度条组件使用了 CSS3 的 transition 和 animation 属性来完成一些特效。
这些特性在 Internet Explorer 9 或以下版本中、Firefox 的老版本中没有被支持。Opera 12 不支持 animation 属性。
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div>
进度条
原文:http://www.cnblogs.com/tanchaozhong/p/7078656.html