Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function game_over(){
  2. score = 0;
  3. $('.mole').unbind('mouseenter mouseleave');
  4. $('.mole').animate({'top':'100%'},300);
  5. $('.score').html('Game Over');
  6. $('.score').append('<div class="try_again">Try Again</div>');
  7.  
  8. }
  9.  
  10. $('.try_again').click(function(){
  11. startGame();
  12. });
  13. });
  14.  
  15.  
  16. function startGame(){
  17.  
  18. $('.mole').on('mouseenter mouseleave');
  19. $('.mole').animate({'top':'0%'},5000, function(){
  20. game_over();
  21.  
  22.  
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement