diff --git a/www/image-modal.js b/www/image-modal.js index 83705fd..5e7532f 100644 --- a/www/image-modal.js +++ b/www/image-modal.js @@ -6,6 +6,7 @@ for (const image of images) { const lazy_image = image.querySelector('.lazy-image') const zoom = modal.querySelector('input') const open = image.querySelector('input'); + const thumbnail = image.querySelector('img'); // for pan let grabbed = false; @@ -17,6 +18,24 @@ for (const image of images) { let clickY = 0; let initW = lazy_image.clientWidth; let initH = lazy_image.clientHeight; + + // for aspect + function fixAspectRatio() { + let img_aspect = thumbnail.clientWidth / thumbnail.clientHeight + let window_aspect = window.innerWidth / window.innerHeight; + let base = zoom.checked ? 200 : 90; + + if (img_aspect > window_aspect) { + // img wider than window + lazy_image.style['min-width'] = base + 'vw'; + lazy_image.style['min-height'] = (base * thumbnail.clientHeight / thumbnail.clientWidth) + 'vw'; + } else { + // window wider than img + lazy_image.style['min-width'] = (base * img_aspect) + 'vh'; + lazy_image.style['min-height'] = base + 'vh'; + } + } + thumbnail.addEventListener('load', fixAspectRatio); // pan the image lazy_image.addEventListener('mouseleave', () => {grabbed = false;}); @@ -41,12 +60,13 @@ for (const image of images) { }); // unzoom on close - close.addEventListener('click', () => { - zoom.checked = false; + open.addEventListener('change', () => { + if (!open.checked) zoom.checked = false; }); // zoom to click target zoom.addEventListener('change', e => { + fixAspectRatio(); if (zoom.checked) { zoom_factor = Math.max( lazy_image.clientWidth / initW, @@ -57,11 +77,24 @@ for (const image of images) { modal.scrollLeft = x; modal.scrollTop = y; } - }) + }); + + // resize image plane to match image aspect ratio + open.addEventListener('change', e => { + if (open.checked) { + fixAspectRatio(); + window.addEventListener('resize', fixAspectRatio); + } else { + window.removeEventListener('resize', fixAspectRatio); + } + }); // close image on escape key document.addEventListener('keydown', e => { - if (e.key == 'Escape') open.checked = false; + if (e.key == 'Escape') { + open.checked = false; + zoom.checked = false; + } }); } diff --git a/www/img/security-camera-screenshot-thumb.webp b/www/img/security-camera-screenshot-thumb.webp index 8fd2eae..e490f6e 100644 Binary files a/www/img/security-camera-screenshot-thumb.webp and b/www/img/security-camera-screenshot-thumb.webp differ diff --git a/www/index.html b/www/index.html index d02269d..601fee0 100644 --- a/www/index.html +++ b/www/index.html @@ -247,7 +247,7 @@
-