Letlabo Nature Reserve
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

gallery.js 557B

123456789101112
  1. function myFunction(imgs) {
  2. // Get the expanded image
  3. var expandImg = document.getElementById("expandedImg");
  4. // Get the image text
  5. var imgText = document.getElementById("imgtext");
  6. // Use the same src in the expanded image as the image being clicked on from the grid
  7. expandImg.src = imgs.src;
  8. // Use the value of the alt attribute of the clickable image as text inside the expanded image
  9. imgText.innerHTML = imgs.alt;
  10. // Show the container element (hidden with CSS)
  11. expandImg.parentElement.style.display = "block";
  12. }