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

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

程序运行截图如下:

源码如下;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CN_TEST1</title>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!--    bootstrap css核心文件-->
    <link rel="stylesheet" href="bootstrap-4.4.1-dist/css/bootstrap.min.css">
<!--    bootstrap使用到了jquery,需要提前引用-->
    <script src="js/jquery-3.5.1.min.js"></script>
<!--    弹窗、提示、下拉菜单-->
    <script src="bootstrap-4.4.1-dist/js/bootstrap.bundle.js"></script>
<!--    bootstrap核心文件-->
    <script src="bootstrap-4.4.1-dist/js/bootstrap.min.js"></script>

</head>
<body>
    <div class="container-fluid">
        <div class="alert alert-success">
            <strong>成功</strong>
        </div>

        <div class="alert alert-danger alert-dismissible fade show">
            <button type="button" class="close" data-dismiss="alert" style="outline: none">&times;</button>
            <strong>危险操作</strong>
        </div>
    </div>
</body>
</html>

解释:

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

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

后面有各种各样的符号;

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

相关文章