You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resposively-lazy does not support CSS Transforms (e.g. scale) with calculations of actual image widths
This can be fixed by using element.getBoundingClientRect().width instead of element.offsetWidth
change var containerWidth = container.offsetWidth * window.devicePixelRatio;
to var containerWidth = container.getBoundingClientRect().width * window.devicePixelRatio;
resposively-lazy does not support CSS Transforms (e.g. scale) with calculations of actual image widths
This can be fixed by using element.getBoundingClientRect().width instead of element.offsetWidth
change
var containerWidth = container.offsetWidth * window.devicePixelRatio;
to
var containerWidth = container.getBoundingClientRect().width * window.devicePixelRatio;
Demo
https://codepen.io/thcreate/pen/700d3a105243db29443d236fcf858626
The text was updated successfully, but these errors were encountered: