BootStrap笔记-信息提示框的使用

x33g5p2x  于2022-02-07 转载在 Bootstrap  
字(1.3k)|赞(0)|评价(0)|浏览(391)

程序运行截图如下:

源码如下;

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>CN_TEST1</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <!-- bootstrap css核心文件-->
  8. <link rel="stylesheet" href="bootstrap-4.4.1-dist/css/bootstrap.min.css">
  9. <!-- bootstrap使用到了jquery,需要提前引用-->
  10. <script src="js/jquery-3.5.1.min.js"></script>
  11. <!-- 弹窗、提示、下拉菜单-->
  12. <script src="bootstrap-4.4.1-dist/js/bootstrap.bundle.js"></script>
  13. <!-- bootstrap核心文件-->
  14. <script src="bootstrap-4.4.1-dist/js/bootstrap.min.js"></script>
  15. </head>
  16. <body>
  17. <div class="container-fluid">
  18. <div class="alert alert-success">
  19. <strong>成功</strong>
  20. </div>
  21. <div class="alert alert-danger alert-dismissible fade show">
  22. <button type="button" class="close" data-dismiss="alert" style="outline: none">&times;</button>
  23. <strong>危险操作</strong>
  24. </div>
  25. </div>
  26. </body>
  27. </html>

解释:

①其中alter就是信息提示框,后面可以接.alert-sucess、alert-info、alert-waring、alert-danger、alert-secondary、alert-light、alert-dark;

②&times打包是关闭符号,如:

后面有各种各样的符号;

③.fade和.show在关闭提示框时有淡出和淡入的效果。

相关文章

最新文章

更多