Guest User

Untitled

a guest
May 22nd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <p>
  2. <button id="success-btn">Success</button>
  3. <button id="failure-btn">Failure</button>
  4. <button id="warning-btn">Warning</button>
  5. </p>
  6. <div class="alert-box success">Successful Alert !!!</div>
  7. <div class="alert-box failure">Failure Alert !!!</div>
  8. <div class="alert-box warning">Warning Alert !!!</div>
  9.  
  10.  
  11. $( "#success-btn" ).click(function() {
  12. $( "div.success" ).fadeIn( 300 ).delay( 1500 ).fadeOut( 400 );
  13. });
  14.  
  15. $( "#failure-btn" ).click(function() {
  16. $( "div.failure" ).fadeIn( 300 ).delay( 1500 ).fadeOut( 400 );
  17. });
  18.  
  19. $( "#warning-btn" ).click(function() {
  20. $( "div.warning" ).fadeIn( 300 ).delay( 1500 ).fadeOut( 400 );
  21. });
  22.  
  23.  
  24. .alert-box {
  25. padding: 15px;
  26. margin-bottom: 20px;
  27. border: 1px solid transparent;
  28. border-radius: 4px;
  29. }
  30.  
  31. .success {
  32. color: #3c763d;
  33. background-color: #dff0d8;
  34. border-color: #d6e9c6;
  35. display: none;
  36. }
  37.  
  38. .failure {
  39. color: #a94442;
  40. background-color: #f2dede;
  41. border-color: #ebccd1;
  42. display: none;
  43. }
  44.  
  45. .warning {
  46. color: #8a6d3b;
  47. background-color: #fcf8e3;
  48. border-color: #faebcc;
  49. display: none;
  50. }
Add Comment
Please, Sign In to add comment