Skip to content
Grav 2.0 is officially stable. Read the announcement →
Support

How to handle responsive iamges

Solved by Tim View solution

Started by Tim 7 years ago · 2 replies · 555 views
7 years ago

Hi,

most of my images have width of 1600px or 1280px. In the end I need them in 950px and 400px width.

As far as I understand what is written here https://learn.getgrav.org/16/content/media#responsive-images
I should rename my images to: [email protected] and link them like

![My 1600px Image](image.jpg?derivatives=[400,950])

Now a 400px and 950px should be created?! When I do will be no "srcset=" tag in the code and it seems that no derivate is created.
What am I doing wrong here?

7 years ago

Hey,

You can output a cropped image size like this:
<img src="{{page.media[header.custom.MyImage].cropZoom(768, 450).url()}}" alt="">

You can then integrate srcset such as:
<img src="{{page.media[header.custom.MyImage].cropZoom(768, 450).url()}}" srcset="{{page.media[header.custom.MyImage].cropZoom(768, 450).url()}} 768w, {{page.media[header.custom.MyImage].cropZoom(320, 450).url()}} 320w" alt="">

Hope this helps.

Suggested topics

Topic Participants Replies Views Activity
Support · by Anna, 23 hours ago
2 70 2 hours ago
Support · by gtx, 1 week ago
4 233 2 days ago
Support · by Paul Hodges, 2 weeks ago
13 283 5 days ago
Support · by Anna, 3 weeks ago
9 340 1 week ago
Support · by TomW, 2 weeks ago
4 192 2 weeks ago