Advertisement
Guest User

Untitled

a guest
Jan 24th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1.  
  2. <html>
  3.  
  4. <head>
  5. <script>
  6. var te;
  7. function inicio(){
  8. te=setInterval(cambia,1000);
  9. //settimeout lo hace solo un vez
  10. }
  11. function parar(){
  12. clearInterval(te);
  13. }
  14. function cambia(){
  15. var foto=document.images[3].src;
  16. document.images[3].src=document.images[2].src;
  17. document.images[2].src=document.images[1].src;
  18. document.images[1].src=document.images[0].src;
  19. document.images[0].src=foto;
  20. }
  21. </script>
  22.  
  23. </head>
  24.  
  25. <body>
  26. <center>
  27. <img src="1.jpg" width="200" height="200" >
  28. <img src="2.jpg" width="200" height="200" >
  29. <img src="3.jpg" width="200" height="200" >
  30. <img src="4.jpg" width="200" height="200" >
  31. <input type="button" value="STOP" onclick="parar()">
  32. <input type="button" value="START" onclick="inicio()">
  33. </center>
  34. </body>
  35.  
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement