swisskyrepo.github.io/_includes/img-to-fullscreen.html

7 lines
164 B
HTML
Raw Normal View History

2024-10-03 14:53:00 +00:00
<script>
document.querySelectorAll('img').forEach(img => {
img.onclick = function() {
this.requestFullscreen();
};
});
</script>