I'm currently learning how to create a basic image gallery.
The setup consists of a main large image in the center with two smaller thumbnails, one positioned at the top left corner and the other at the bottom right corner.
<div class="images_gallery">
<div class="small_top_left thumbnail"> <a href="#triggerlarge"></a><img src="small_top_A.jpg"/></div>
<div class="large middle visible"><img src="large_imageC.jpg"></div>
<div class="large middle hidden"><img src="large_imageA.jpg"></div>
<div class="large middle hidden"><img src="large_imageB.jpg"></div>
<div class="small_bottom_right thumbnail"> <a href="#triggerlarge"></a><img src="small_bottom_B.jpg"/></div>
</div>
From my understanding, there are three larger images in total, with one displayed as visible while the other two remain hidden. Clicking on a thumbnail will reveal its corresponding larger version and switch places with the previous large image.
Thank you for any guidance provided.