alert.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <link rel="stylesheet" href="../../../dist/css/bootstrap.min.css">
  7. <title>Alert</title>
  8. </head>
  9. <body>
  10. <div class="container">
  11. <h1>Alert <small>Bootstrap Visual Test</small></h1>
  12. <div class="alert alert-warning alert-dismissible fade show" role="alert">
  13. <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  14. <span aria-hidden="true">&times;</span>
  15. </button>
  16. <strong>Holy guacamole!</strong> You should check in on some of those fields below.
  17. </div>
  18. <div class="alert alert-danger alert-dismissible fade show" role="alert">
  19. <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  20. <span aria-hidden="true">&times;</span>
  21. </button>
  22. <p>
  23. <strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
  24. </p>
  25. <p>
  26. <button type="button" class="btn btn-danger">Danger</button>
  27. <button type="button" class="btn btn-secondary">Secondary</button>
  28. </p>
  29. </div>
  30. <div class="alert alert-danger alert-dismissible fade show" role="alert">
  31. <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  32. <span aria-hidden="true">&times;</span>
  33. </button>
  34. <p>
  35. <strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.
  36. </p>
  37. <p>
  38. <button type="button" class="btn btn-danger">Take this action</button>
  39. <button type="button" class="btn btn-primary">Or do this</button>
  40. </p>
  41. </div>
  42. <div class="alert alert-warning alert-dismissible fade show" role="alert" style="transition-duration: 5s;">
  43. <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  44. <span aria-hidden="true">&times;</span>
  45. </button>
  46. This alert will take 5 seconds to fade out.
  47. </div>
  48. </div>
  49. <script src="../../../node_modules/jquery/dist/jquery.slim.min.js"></script>
  50. <script src="../../dist/util.js"></script>
  51. <script src="../../dist/alert.js"></script>
  52. </body>
  53. </html>