alert.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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">
  6. <link href="../../../dist/css/bootstrap.min.css" rel="stylesheet">
  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="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  14. <strong>Holy guacamole!</strong> You should check in on some of those fields below.
  15. </div>
  16. <div class="alert alert-danger alert-dismissible fade show" role="alert">
  17. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  18. <p>
  19. <strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
  20. </p>
  21. <p>
  22. <button type="button" class="btn btn-danger">Danger</button>
  23. <button type="button" class="btn btn-secondary">Secondary</button>
  24. </p>
  25. </div>
  26. <div class="alert alert-danger alert-dismissible fade show" role="alert">
  27. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  28. <p>
  29. <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.
  30. </p>
  31. <p>
  32. <button type="button" class="btn btn-danger">Take this action</button>
  33. <button type="button" class="btn btn-primary">Or do this</button>
  34. </p>
  35. </div>
  36. <div class="alert alert-warning alert-dismissible fade show" role="alert" style="transition-duration: 5s;">
  37. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  38. This alert will take 5 seconds to fade out.
  39. </div>
  40. </div>
  41. <script src="../../dist/dom/event-handler.js"></script>
  42. <script src="../../dist/dom/selector-engine.js"></script>
  43. <script src="../../dist/dom/data.js"></script>
  44. <script src="../../dist/base-component.js"></script>
  45. <script src="../../dist/alert.js"></script>
  46. </body>
  47. </html>