Need help/correct way to implementing responsive image and multiple file formats in picture element, using lazysizes-aFarkas. The sample code as follow:
<picture>
<source data-scrset="example.jpg" type="image/jpeg" media="(max-width: 736px)"/>
<source data-scrset="example.webp" type="image/webp"/>
<img class="lazyload" data-src="example.png" type="image/png" alt="fallback"/>
</picture>
Appreciate any help :)