Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. const score = document.querySelector('.score'),
  2. start = document.querySelector('.start'),
  3. gameArea = document.querySelector('.gameArea');
  4.  
  5.  
  6. start.addEventListener('click', startGame);
  7. document.addEventListener('keydown', startRun);
  8. document.addEventListener('keyup', stopRun);
  9.  
  10.  
  11.  
  12. function startGame(){
  13. start.classList.add('hide');
  14. }
  15.  
  16. function startRun(event){
  17. console.log(event);
  18. }
  19.  
  20. function stopRun(){
  21. console.log('stop');
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement