craft-snippets / Craft-image-toolbox

Craft CMS plugin that helps with the use of image transforms in templates.
Other
16 stars 0 forks source link

Sizes attribute (retina) support? #3

Open TomDeSmet opened 3 years ago

TomDeSmet commented 3 years ago

Is it possible to implement retina support with the x factor:

<img srcset="320w.jpg,
             480w.jpg 1.5x,
             640w.jpg 2x"
     src="640w.jpg"
     alt="">
piotrpog commented 3 years ago

@TomDeSmet Not now, but i will add it to my roadmap.

TomDeSmet commented 3 years ago

After reading this excellent article: https://css-tricks.com/a-guide-to-the-responsive-images-syntax-in-html I don't think retina support is needed, but support for the sizes attribute is (which I couldn't find in your docs). Than retina should be covered by the browser automatically.