「Bootstrap 4入門」.progress-bar-stripedでストライプのプログレスを指定する方法

2020年12月30日

説明
.progress-bar-striped:ストライプ
使用例

<head>
  <title>Bootstrapのストライプサンプル</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
  <script src="/jquery/3.2.1/jquery.min.js"></script>
  <script src="/popper.js/1.15.0/umd/popper.min.js"></script>
  <script src="/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>

<div class="container">
  <h2>ストライプのプログレス</h2>
  <p>.progress-bar-striped でストライプのプログレスを指定</p> 
  <div class="progress">
    <div class="progress-bar progress-bar-striped" style="width:30%"></div>
  </div>
  <br>
  <div class="progress">
    <div class="progress-bar bg-success progress-bar-striped" style="width:40%"></div>
  </div>
  <br>
  <div class="progress">
    <div class="progress-bar bg-info progress-bar-striped" style="width:50%"></div>
  </div>
  <br>
  <div class="progress">
    <div class="progress-bar bg-warning progress-bar-striped" style="width:60%"></div>
  </div>
  <br>
  <div class="progress">
    <div class="progress-bar bg-danger progress-bar-striped" style="width:70%"></div>
  </div>
</div>

 

Bootstrap4

Posted by arkgame