Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Cub Miscator</title>
  6.     <style>
  7.         div#cube {
  8.             width: 300px;
  9.             height: 300px;
  10.             background-color: red;
  11.             border: solid 1px blue;
  12.             position: relative;
  13.             left: 0px;
  14.         }
  15.     </style>
  16. </head>
  17. <body>
  18.    
  19.     <div id="cube"></div>
  20.  
  21.     <script>
  22.  
  23.    
  24.         document.addEventListener('keydown', function(event) {
  25.         var cube = document.getElementById('cube');
  26.             if (event.keyCode == '68') {
  27.                 if (cube.style.left == '') {
  28.                     cube.style.left = '0px';
  29.                 }
  30.                
  31.                 cube.style.left = parseInt(cube.style.left) + 50 + 'px';
  32.             }
  33.        
  34.         if(cube.style.left == '' && cube.style.left = '700px'){
  35.               cube.style.left -= parseInt(cube.style.left) + 50 + 'px';
  36.                   }
  37.        
  38.         });
  39.  
  40.      
  41.            
  42.    
  43.    
  44.     </script>
  45.  
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement