Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
123456789101112 |
- function myFunction(imgs) {
- // Get the expanded image
- var expandImg = document.getElementById("expandedImg");
- // Get the image text
- var imgText = document.getElementById("imgtext");
- // Use the same src in the expanded image as the image being clicked on from the grid
- expandImg.src = imgs.src;
- // Use the value of the alt attribute of the clickable image as text inside the expanded image
- imgText.innerHTML = imgs.alt;
- // Show the container element (hidden with CSS)
- expandImg.parentElement.style.display = "block";
- }
|