Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> Rimedi della nonna </title>
  4.  
  5. </head>
  6.  
  7. <body onload="init();">
  8.  
  9.     <img id="img" src="carbonara.jpg" height=600>
  10.  
  11. <SCRIPT >
  12. var images;
  13. var currentImageIndex;
  14.  
  15. function init()
  16. {
  17.     currentImageIndex = 0;
  18.     images = ["carbonara.jpg", "crostatafrutta.jpg", "lasagnebolognese.jpg"];
  19.     window.setInterval(update, 1000);
  20. }
  21.  
  22. function update()
  23. {
  24.  
  25.     if(currentImageIndex>=2)
  26.         currentImageIndex=0;
  27.     else
  28.         currentImageIndex+=1;
  29.     document.getElementById("img").src = images[currentImageIndex];
  30. }
  31.  
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement