gpt4 book ai didi

css - 是否可以使用 Twitter Bootstrap 呈现不确定的进度条?

转载 作者:数据小太阳 更新时间:2023-10-29 09:16:09 30 4
gpt4 key购买 nike

是否可以使用某些内置功能或第 3 方插件使用 Twitter Bootstrap(v2 或 v3)呈现不确定的进度条?我真的用谷歌搜索了它,但没有运气。

我要实现的例子:

progress bar

最佳答案

bootstrap 2 :

<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet" />
<div class="progress progress-striped active">
<div class="bar" style="width: 100%;"></div>
</div>

bootstrap 3 :

<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="progress progress-striped active">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%">
</div>
</div>

bootstrap 4 :

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">

<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div>
</div>

关于css - 是否可以使用 Twitter Bootstrap 呈现不确定的进度条?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19765660/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com