在 Bootstrap 中制作动画条纹进度条
要制作动画条纹进度条,请使用 Bootstrap 中的 .active 类和 .progress-bar 类。
你可以尝试运行以下代码以制作动画条纹进度条
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Level</h2> <p>The level of water in meters:</p> <div class = "progress"> <div class = "progress-bar progress-bar-striped active" role = "progressbar" aria-valuenow = "20" aria-valuemin = "0" aria-valuemax = "100" style = "width:40%"> 20% </div> </div> </div> </body> </html>
广告