Picture @picture

In development

The default picture component with lazy loaded images features optional specific images for each media query.

Default @picture

<!-- Default -->
<picture class="picture"><img class="picture__image" src="https://via.placeholder.com/100x100/b0b0b0/333333.png?text=100x100" alt="Alternative text" loading="lazy" /></picture>

With multiple sources @picture--sources

<!-- With multiple sources -->
<picture class="picture">
  <source srcset="https://bildermangel.de/1440x550/b0b0b0/333333.png?text=1440x550%20(XL), https://bildermangel.de/2880x1100/b0b0b0/333333.webp?text=2880x1100%20(2x) 2x" media="(min-width: 1200px)" />
  <source srcset="https://bildermangel.de/990x550/b0b0b0/333333.png?text=990x550%20(L), https://bildermangel.de/1980x1100/b0b0b0/333333.webp?text=1980x1100%20(L%202x) 2x" media="(min-width: 990px)" />
  <source srcset="https://bildermangel.de/688x387/b0b0b0/333333.png?text=688x387%20(16/9%20M-L), https://bildermangel.de/1367x774/b0b0b0/333333.webp?text=1367x774%20(16/9%20M-L%202x) 2x" media="(min-width: 768px)" />
  <source srcset="https://bildermangel.de/440x248/b0b0b0/333333.png?text=440x248%20(16/9%20M), https://bildermangel.de/880x496/b0b0b0/333333.webp?text=880x496%20(16/9%20M%202x) 2x" media="(min-width: 480px)" />
  <source srcset="https://bildermangel.de/715x477/b0b0b0/333333.png?text=715x477%20(S%20Min%20Width), https://bildermangel.de/1430x954/b0b0b0/333333.webp?text=1430x954%20(S%202x%20Min%20Width) 2x" media="(max-width: 479px)" /><img class="picture__image" src="https://bildermangel.de/715x477/b0b0b0/333333.png?text=715x477%20(S%20Min%20Width)" srcset="https://bildermangel.de/715x477/b0b0b0/333333.png?text=715x477%20(S%20Min%20Width), https://bildermangel.de/1430x954/b0b0b0/333333.webp?text=1430x954%20(S%202x%20Min%20Width) 2x" alt="Alternative text" loading="lazy" /></picture>

2:1 @picture--2-1

<!-- 2:1 -->
<picture class="picture"><img class="picture__image" src="https://bildermangel.de/720x360/b0b0b0/333333.png?text=720x360%20(S%20Min%20Width)" srcset="https://bildermangel.de/720x360/b0b0b0/333333.png?text=720x360%20(S%20Min%20Width), https://bildermangel.de/1440x720/b0b0b0/333333.webp?text=1440x720%20(S%202x%20Min%20Width) 2x" alt="Alternative text" loading="lazy" /></picture>