Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class="container">
        <div class="kw" id="quadrat"></div>
    </div>  
  
  
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
</body>
</html>
 
$(document).ready(function(){
    go_kwadrat();
});
function go_kwadrat(){
    move_me();
}
function move_me(){
    $(document).on('keydown', function(event){
        let klawisz = event.which;
        let kwadrat = $('#quadrat');
   if(klawisz === 37 && kwadrat.style.left > 0){
      console.log('lewo');
      kwadrat.style.left -= 1
   }else if(klawisz === 38 && kwadrat.style.top > 0){
      console.log('góra');
      kwadrat.style.top -= 1
   }else if(klawisz === 39 && kwadrat.style.left < 790){
      console.log('prawo');
      kwadrat.style.left += 1
   }else if(klawisz === 40 && kwadrat.style.top < 390){
      console.log('dół');
      kwadrat.style.top += 1
      }
   });
}
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers