Skip to content

Instantly share code, notes, and snippets.

@Manyaka
Last active May 8, 2020 09:13
Show Gist options
  • Save Manyaka/5e6d272de205096d98b1ddd18c2b972d to your computer and use it in GitHub Desktop.
Save Manyaka/5e6d272de205096d98b1ddd18c2b972d to your computer and use it in GitHub Desktop.
responsive img
<picture>
<source
media="(max-width: 799px)"
srcset="cupcake.webp 1x, cupcake@2x.webp 2x"
type="image/webp"
>
<source
media="(min-width: 800px)"
srcset="huge-cupcake.webp 1x, huge-cupcake@2x.webp 2x"
type="image/webp"
>
<source
media="(min-width: 800px)"
srcset="huge-cupcake.webp 1x, huge-cupcake@2x.webp 2x"
type="image/jpeg" //для сафари
>
<img src="cupcake.jpg" srcset="cupcake.jpg 1x, cupcake@2x.jpg 2x" alt="a yummy cupcake">
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment