Advertisement
Guest User

Untitled

a guest
Aug 16th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. #button {
  2. display: block;
  3. color: rgb(255, 255, 255);
  4. text-decoration: none;
  5. text-align: center;
  6. padding: 10px;
  7. margin: 15px 0px 0px 15px;
  8. font-size: 18px;
  9. text-transform: uppercase;
  10. background: #ED5E2F;
  11. color: #FFF;
  12. border: 0px none;
  13. outline: 0px none;
  14. top:0;
  15. left:0;
  16. position:fixed;
  17. z-index:100;
  18. }
  19.  
  20. #button:hover {
  21. background: #74A599;
  22. }
  23.  
  24. #button:active {
  25. background: #F6A953;
  26. }
  27. #witaj
  28. {
  29. color:white;
  30. text-align:center;
  31. background-color:#545A5C;
  32. width:400px;
  33. height:40px;
  34. top:15;
  35. left:40;
  36. position:fixed;
  37. z-index:100px;
  38. }
  39.  
  40. .hidden{
  41. display: none;
  42. }
  43.  
  44. $(document).ready(function(){
  45. $("#button").click(function(){
  46. $("#witaj").hide();
  47. });
  48. โ€‹});
  49.  
  50. window.addEventListener('DOMContentLoaded', function(){
  51.  
  52. document.getElementById('button').addEventListener('click', function(){
  53.  
  54. document.getElementById('witaj').classList.add('hidden');
  55.  
  56. });
  57.  
  58. });
  59.  
  60. <html>
  61. <head>
  62. <link rel="stylesheet" type="text/css" href="style.css">
  63. <script type="text/javascript" src="script.js"></script>
  64. <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
  65. <body>
  66. <div id="witaj">
  67. <button id="button">OK</button>
  68. </div>
  69.  
  70. </body>
  71.  
  72.  
  73. <head>
  74. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement