https://www.w3schools.com/howto/howto_js_tab_img_gallery.asp

sayfasında ki örnekten yararlanabilirsin kolay gelsin










Tabbed Image Gallery


Click on the images below:







Nature


Snow


Mountains


Lights




×




<script>
function myFunction(imgs) {
var expandImg = document.getElementById("expandedImg");
var imgText = document.getElementById("imgtext");
expandImg.src = imgs.src;
imgText.innerHTML = imgs.alt;
expandImg.parentElement.style.display = "block";
}
</script>