Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. let time = 5000;
  2. let clicked = 1;
  3.  
  4. $(document).on('click', '#container div',function() {
  5.  
  6. time += 1000;
  7.  
  8. generateBox();
  9.  
  10. });
  11.  
  12. function generateBox() {
  13.  
  14. let top = Math.floor(Math.random() * 551);
  15. let left = Math.floor(Math.random() * 911);
  16.  
  17. $('#container').html('<div style="top: '+top+'px; left: '+left+'px;">'+clicked+'</div>');
  18.  
  19. clicked++;
  20. }
  21.  
  22.  
  23. /*document.addEventListener('keyup', (event) => {
  24. console.log(String.fromCharCode(event.keyCode));
  25.  
  26. });*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement