Skip to content

Instantly share code, notes, and snippets.

@terkel
Last active August 13, 2019 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terkel/eb7ce855ef672b67bf2037430fcb844a to your computer and use it in GitHub Desktop.
Save terkel/eb7ce855ef672b67bf2037430fcb844a to your computer and use it in GitHub Desktop.
<!--
https://developers.google.com/web/fundamentals/performance/lazy-loading-guidance/images-and-video/
https://css-tricks.com/preventing-content-reflow-from-lazy-loaded-images/
https://codepen.io/tigt/post/optimizing-svgs-in-data-uris
https://addyosmani.com/blog/lazy-loading/
-->
<img
alt="A cat"
class="lazyload"
data-src="cat.jpg"
loading="lazy"
src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900'%3E%3C/svg%3E"
>
<noscript>
<img alt="A cat" src="cat.jpg">
</noscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment