Advertisement
Guest User

rip

a guest
Mar 28th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <title>Traffic Light Changer</title>
  4. <a href="javascript:changeLight('mainImage')"><img src="green.jpg"></a>
  5.  
  6. <script>
  7. var mainImage = document.getElementById("mainImage");
  8.  
  9. var imageList = ["green.jpg","yellow.jpg","redyellow.jpg","red.jpg"]
  10. var imageIndex = 0;
  11.  
  12. function changeLight() {
  13. mainImage.setAttribute("src",imageList[imageIndex]
  14. imageIndex = (imageIndex + 1)
  15. }
  16.  
  17. </script>
  18.  
  19. <button onclick "changeLight">Change Light</button>
  20. <body>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement