Skip to content

Instantly share code, notes, and snippets.

@youngbrioche
Last active February 8, 2024 08:15
Show Gist options
  • Save youngbrioche/4fc71c8d09646567111f to your computer and use it in GitHub Desktop.
Save youngbrioche/4fc71c8d09646567111f to your computer and use it in GitHub Desktop.
Responsive images helper using srcset in Rails
module ImagesHelper
# Acts as a thin wrapper for image_tag and generates an srcset attribute for regular image tags
# for usage with responsive images polyfills like picturefill.js, supports asset pipeline path helpers.
#
# image_set_tag 'pic_1980.jpg', { 'pic_640.jpg' => '640w', 'pic_1024.jpg' => '1024w', 'pic_1980.jpg' => '1980w' }, sizes: '100vw', class: 'my-image'
#
# => <img src="/assets/ants_1980.jpg" srcset="/assets/pic_640.jpg 640w, /assets/pic_1024.jpg 1024w, /assets/pic_1980.jpg 1980w" sizes="100vw" class="my-image">
#
def image_set_tag(source, srcset = {}, options = {})
srcset = srcset.map { |src, size| "#{path_to_image(src)} #{size}" }.join(', ')
image_tag(source, options.merge(srcset: srcset))
end
end
@horatiorosa
Copy link

This is still a useful snippet. Thanks 👍

@murdoch
Copy link

murdoch commented Oct 5, 2018

@mtribone
Copy link

mtribone commented Nov 3, 2018

@murdoch 🥇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment