Let's see if this fixes flash of cut-off images on Mobile Safari

This commit is contained in:
Lim Chee Aun 2023-04-15 01:30:20 +08:00
parent 38b844db81
commit 5bbff378d3

View file

@ -49,7 +49,11 @@ function Media({ media, to, showOriginal, autoAnimate, onClick = () => {} }) {
if (media) {
const value = make3dTransformValue({ x, y, scale });
media.style.setProperty('transform', value);
if (scale === 1) {
media.style.removeProperty('transform');
} else {
media.style.setProperty('transform', value);
}
media.closest('.media-zoom').style.touchAction =
scale <= 1 ? 'pan-x' : '';