Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <script>
  2. var images = ["images/OceanicTeaMockup.jpg", "images/RoseTeaMockup.jpg", "images/NorthernTeaMockUp.jpg",
  3. "images/GalaxyTeaMockup.jpg"]
  4. var imgState = 0;
  5.  
  6. var imgTag = document.getElementById("imgClickAndChange");
  7.  
  8. imgTag.addEventListener("click", function (event) {
  9. imgState = (++imgState % images.length);
  10. event.target.src = images[imgState];
  11. });
  12.  
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement