Add image lightbox — click gallery image to view full-screen

Clicking any image in a post modal opens it full-screen with a dark
overlay. Close by clicking outside, the ✕ button, or pressing Escape.
Added zoom-in cursor and hover opacity to signal clickability.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-08 09:36:40 +02:00
parent 7bb5924cf6
commit af55297452
3 changed files with 64 additions and 1 deletions

View File

@@ -184,6 +184,12 @@
</div>
</div>
<!-- LIGHTBOX -->
<div id="lightboxOverlay" onclick="closeLightbox()">
<button class="lightbox-close" onclick="closeLightbox()"></button>
<img id="lightboxImg" src="" alt="" onclick="event.stopPropagation()" />
</div>
<script src="script.js"></script>
</body>
</html>