Advertisement
olegsuv

Untitled

Jan 4th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <style>
  5.         .block {
  6.             display: inline-block;
  7.             width: 450px;
  8.             height: 450px;
  9.             margin: 10px;
  10.             border: 3px solid black;
  11.             background-color: blue;
  12.             cursor: pointer;
  13.         }
  14.  
  15.         .is-changed {
  16.             background: black;
  17.             width: 400px;
  18.             height: 400px;
  19.         }
  20.     </style>
  21. </head>
  22. <body>
  23.     <div id="vanishingBlock" class="block" onclick="change(this)"></div>
  24.     <div id="cssChangingBlock" class="block" onclick="change(this)"></div>
  25.  
  26.     <script type="text/javascript">
  27.         function change(element) {
  28.             document.getElementById('cssChangingBlock').classList.add('is-changed');
  29.             element.style.display = "none";
  30.         }
  31.     </script>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement