We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Origami was written prior to the implementation of lazy loading of image attributes.
https://caniuse.com/loading-lazy-attr
By adding loading="lazy" to img elements, the browser automatically defers loading until the image is nearly on display.
This currently has 93% browser support, and is backwards compatible where older browsers will just download the image, ignoring the attribute.
We can continue with the current approach for old browsers with a browser check, or we can remove our custom lazy loading for images entirely: https://stackoverflow.com/questions/58043418/check-native-browser-support-for-lazy-loading-images
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Origami was written prior to the implementation of lazy loading of image attributes.
https://caniuse.com/loading-lazy-attr
By adding loading="lazy" to img elements, the browser automatically defers loading until the image is nearly on display.
This currently has 93% browser support, and is backwards compatible where older browsers will just download the image, ignoring the attribute.
We can continue with the current approach for old browsers with a browser check, or we can remove our custom lazy loading for images entirely: https://stackoverflow.com/questions/58043418/check-native-browser-support-for-lazy-loading-images
The text was updated successfully, but these errors were encountered: