react-image-magnify
react-image-magnify copied to clipboard
Add browser level lazy loading?
https://web.dev/browser-level-image-lazy-loading/
You can use the loading attribute to completely defer the loading of offscreen images that can be reached by scrolling:
<img src="image.png" loading="lazy" alt="…" width="200" height="200">