Skip to content

Instantly share code, notes, and snippets.

View EugenNekrasov's full-sized avatar

gen EugenNekrasov

  • Erevan
View GitHub Profile
@EugenNekrasov
EugenNekrasov / gist:6b462faba88a7b0a1a04f7fd3c548102
Created May 27, 2024 18:02
Adaptive picture with few formats
<picture>
<source media="(min-width: 1200px)" srcset="desktop@1x.webp 1x, desktop@2x.webp 2x" type="image/webp">
<source media="(min-width: 1200px)" srcset="desktop@1x.png 1x, desktop@2x.png 2x" type="image/png">
<source srcset="mobile@1x.webp 1x, mobile@2x.webp 2x" type="image/webp">
<source srcset="mobile@1x.png 1x, mobile@2x.png 2x" type="image/png">
<img src="mobile@1x.png" alt="Fallback image">
</picture>