Created
July 12, 2017 14:42
-
-
Save keirwhitaker/6d024562dca98d5e9294f3573a5a00e2 to your computer and use it in GitHub Desktop.
An example of how to use srcset in Shopify themes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% for product in collection.products %} | |
<a href="{{ product.url | within: collection }}"> | |
{% assign image = product.featured_image %} | |
<img src="{{ image.src | img_url: '480x' }}" alt="{{ image.alt | escape }}" | |
srcset=" | |
{% if image.width > 640 %}{{ image.src | img_url: '640x' }} 640w{% endif %} | |
{% if image.width > 720 %},{{ image.src | img_url: '720x' }} 720w{% endif %} | |
{% if image.width > 900 %},{{ image.src | img_url: '900x' }} 900w{% endif %} | |
" | |
sizes="(min-width: 960px) 450px, (min-width: 720px) 50vw, 100vw" | |
/> | |
</a> | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@keirwhitaker Ah yes, right you are! I was retyping rather than copy-pasting and missed that :)