Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. var hand1 = document.getElementById("hand1");
  2. var hand2 = document.getElementById("hand2");
  3. var hand3 = document.getElementById("hand3");
  4. var hand4 = document.getElementById("hand4");
  5.  
  6. var handcount = 0
  7. $(".hand").click(function() {
  8. handcount++;
  9. if(handcount == 1) {
  10. $(".hand1").addClass("hide");
  11. hand1.pause();
  12. hand1.currentTime = '0';
  13.  
  14. $(".hand2").get(0).play();
  15. $(".hand2").removeClass("hide");
  16. }else if(handcount == 2){
  17. $(".hand2").addClass("hide");
  18. hand2.pause();
  19. hand2.currentTime = '0';
  20.  
  21. $(".hand3").get(0).play();
  22. $(".hand3").removeClass("hide");
  23. }else if(handcount == 3){
  24. $(".hand3").addClass("hide");
  25. hand3.pause();
  26. hand3.currentTime = '0';
  27.  
  28. $(".hand4").get(0).play();
  29. $(".hand4").removeClass("hide");
  30. }else if(handcount == 4){
  31. $(".hand4").addClass("hide");
  32. hand4.pause();
  33. hand4.currentTime = '0';
  34.  
  35.  
  36. $(".hand1").get(0).play();
  37. $(".hand1").removeClass("hide");
  38. handcount = 0;
  39. }
  40. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement