BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <title>Bootstrap 实例</title> <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1" name="viewport"> <link href="//cdn.staticfile.net/twitter-bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"> <script src="//cdn.staticfile.net/jquery/3.2.1/jquery.min.js"></script> <script src="//cdn.staticfile.net/popper.js/1.12.5/umd/popper.min.js"></script> <script src="//cdn.staticfile.net/twitter-bootstrap/4.0.0/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>提示框动画</h2> <p>.fade 和 .show 类用于设置提示框在关闭时的淡出和淡入效果:</p> <div class="alert alert-success alert-dismissable fade show"> <button class="close" data-dismiss="alert" type="button">×</button> <strong>成功!</strong> 指定操作成功提示信息。 </div> <div class="alert alert-info alert-dismissable fade show"> <button class="close" data-dismiss="alert" type="button">×</button> <strong>信息!</strong> 请注意这个信息。 </div> <div class="alert alert-warning alert-dismissable fade show"> <button class="close" data-dismiss="alert" type="button">×</button> <strong>警告!</strong> 设置警告信息。 </div> <div class="alert alert-danger alert-dismissable fade show"> <button class="close" data-dismiss="alert" type="button">×</button> <strong>错误!</strong> 失败的操作。 </div> <div class="alert alert-primary alert-dismissable fade show"> <button class="close" data-dismiss="alert" type="button">×</button> <strong>首选!</strong> 这是一个重要的操作信息。 </div> <div class="alert alert-secondary alert-dismissable fade show"> <button class="close" data-dismiss="alert" type="button">×</button> <strong>次要的!</strong> 显示一些不重要的信息。 </div> <div class="alert alert-dark alert-dismissable fade show"> <button class="close" data-dismiss="alert" type="button">×</button> <strong>深灰色!</strong> 深灰色提示框。 </div> <div class="alert alert-light alert-dismissable fade show"> <button class="close" data-dismiss="alert" type="button">×</button> <strong>浅灰色!</strong>浅灰色提示框。 </div> </div> </body> </html>
运行结果