Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

How to handle responsive iamges

Solved by Tim View solution

Started by Tim 7 years ago · 2 replies · 615 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 blu3prince, 4 days ago
1 82 13 hours ago
Support · by complanar, 7 days ago
6 163 2 days ago
Support · by Rick Beebe, 1 week ago
2 121 4 days ago
Support · by alex, 5 days ago
2 105 4 days ago
Support · by Marcel, 2 weeks ago
1 155 5 days ago