Created
October 13, 2017 22:10
-
-
Save jeffochoa/99d6c3d9048bcf8109bf8728c959d0ba to your computer and use it in GitHub Desktop.
Chrome image async API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- if possible: --> | |
<!-- the decode for this image may be deferred --> | |
<img async=on src="space-cats.jpg"> | |
<!-- the decode for this image should not be deferred --> | |
<img async=off src="space-dogs.jpg"> | |
<!-- the browser is free to do what it feels is best for the user --> | |
<img src="space-pizza.jpg"> | |
<!-- Tweeted by @addyosmani here https://twitter.com/addyosmani/status/916391453076602880?s=09 --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment