Guest User

Untitled

a guest
Jan 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. function playPerro(){
  2.  
  3. document.getElementById("audiocerdo").pause();
  4. document.getElementById("audiovaca").pause();
  5. document.getElementById("audiogato").pause();
  6.  
  7. document.getElementById("audioperro").play();
  8. document.getElementById("perro").className="animal pequenio";
  9.  
  10. var claseAnimacion = document.getElementsByClassName("animal pequenio");
  11.  
  12. function myPause() {
  13. document.getElementById("audioperro").pause();
  14. claseAnimacion.classList.remove("pequenio");
  15. }
  16. setInterval(myPause, 5000);
  17.  
  18. }
Add Comment
Please, Sign In to add comment