Created
September 5, 2015 09:23
-
-
Save dasher/a8cea5ddf8011bc6d3bb to your computer and use it in GitHub Desktop.
This file contains 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
<picture> | |
<!-- serve WebP to Chrome and Opera --> | |
<source | |
media="(min-width: 50em)" | |
sizes="50vw" | |
srcset="/image/thing-200.webp 200w, /image/thing-400.webp 400w, | |
/image/thing-800.webp 800w, /image/thing-1200.webp 1200w, | |
/image/thing-1600.webp 1600w, /image/thing-2000.webp 2000w" | |
type="image/webp"> | |
<source | |
sizes="(min-width: 30em) 100vw" | |
srcset="/image/thing-crop-200.webp 200w, /image/thing-crop-400.webp 400w, | |
/image/thing-crop-800.webp 800w, /image/thing-crop-1200.webp 1200w, | |
/image/thing-crop-1600.webp 1600w, /image/thing-crop-2000.webp 2000w" | |
type="image/webp"> | |
<!-- serve JPEGXR to Edge --> | |
<source | |
media="(min-width: 50em)" | |
sizes="50vw" | |
srcset="/image/thing-200.jpgxr 200w, /image/thing-400.jpgxr 400w, | |
/image/thing-800.jpgxr 800w, /image/thing-1200.jpgxr 1200w, | |
/image/thing-1600.jpgxr 1600w, /image/thing-2000.jpgxr 2000w" | |
type="image/vnd.ms-photo"> | |
<source | |
sizes="(min-width: 30em) 100vw" | |
srcset="/image/thing-crop-200.jpgxr 200w, /image/thing-crop-400.jpgxr 400w, | |
/image/thing-crop-800.jpgxr 800w, /image/thing-crop-1200.jpgxr 1200w, | |
/image/thing-crop-1600.jpgxr 1600w, /image/thing-crop-2000.jpgxr 2000w" | |
type="image/vnd.ms-photo"> | |
<!-- serve JPEG to others --> | |
<source | |
media="(min-width: 50em)" | |
sizes="50vw" | |
srcset="/image/thing-200.jpg 200w, /image/thing-400.jpg 400w, | |
/image/thing-800.jpg 800w, /image/thing-1200.jpg 1200w, | |
/image/thing-1600.jpg 1600w, /image/thing-2000.jpg 2000w"> | |
<source | |
sizes="(min-width: 30em) 100vw" | |
srcset="/image/thing-crop-200.jpg 200w, /image/thing-crop-400.jpg 400w, | |
/image/thing-crop-800.jpg 800w, /image/thing-crop-1200.jpg 1200w, | |
/image/thing-crop-1600.jpg 1600w, /image/thing-crop-2000.jpg 2000w"> | |
<!-- fallback for browsers that don't support picture --> | |
<img src="/image/thing.jpg" width="50%"> | |
</picture> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment