Created
June 12, 2017 15:17
-
-
Save druellan/eadcb53d688931b3b7874fb85078726e to your computer and use it in GitHub Desktop.
HTML5 Responsive Sourceset
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
<img src="foo.jpg" alt="Bar" srcset="[email protected] 2x, foo.jpg 1x"> | |
<picture> | |
<source media="(min-width: 1024px)" srcset="foo-large.jpg 1024w, foo-medium.jpg 640w, foo-small.jpg 320w" sizes="50vw"> | |
<source srcset="[email protected] 2x, foo.jpg 1x"> | |
<img src="foo.jpg" alt="Bar"> | |
</picture> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment