Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <script>
  2.  
  3. function mudaImagem (foto){
  4. document.getElementById("vamo") .src =foto;
  5. }
  6. function selecionaPequeno(){
  7. document.getElementById("bora") .src = "imagens/P1.gif";
  8. }
  9. function voltaPequeno(){
  10. document.getElementById("bora") .src = "imagens/P1.png";
  11. }
  12. function selecionaMedio(){
  13. document.getElementById("corre") .src = "imagens/P1.gif";
  14. }
  15. function selecionaGrande(){
  16. document.getElementById("neh") .src = "imagens/G3.png";
  17. }
  18. function selecionaGigantesco(){
  19. document.getElementById("jeh") .src = "imagens/GG3.png";
  20. }
  21.  
  22.  
  23. </script>
  24.  
  25. <img src="imagens/P1.png" id="bora" name="opa" onclick="selecionaPequeno()" width="56" height="35" />
  26. <img src="imagens/P1.png" id="corre" name="opa" onclick="selecionaMedio()" width="56" height="35" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement