Guest User

Untitled

a guest
May 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
  6. <script type="text/javascript" src="//code.jquery.com/jquery-latest.min.js"></script>
  7.  
  8. <style>
  9. .panel-tost{
  10. display:none;
  11. position:absolute;
  12. background:#555555;
  13. color:#ffffff;
  14. width:230px;
  15. text-align:center;
  16. z-index:6001;
  17. opacity:.8;
  18. filter:alpha(opacity=50);
  19. top:80%;
  20. left:40%;}
  21. </style>
  22.  
  23. </head>
  24. <body>
  25.  
  26.  
  27. <button id="btnToast">Show Snackbar</button>
  28.  
  29. <div class="panel panel-tost">
  30. <div class="panel-heading">fade~ post~</div>
  31. </div>
  32.  
  33. <script>
  34. $(document).ready(function(){
  35. $('#btnToast').on('click',function(){
  36. $('.panel-heading').text('ㅋㅋㅋ');
  37. $('.panel-tost').fadeIn(500).fadeOut(2000);
  38. });
  39. });
  40. </script>
  41.  
  42. </body>
  43. </html>
Add Comment
Please, Sign In to add comment