Skip to content

Instantly share code, notes, and snippets.

@dasgib
Forked from youngbrioche/images_helper.rb
Created October 8, 2014 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dasgib/d613899c6e630c5e6fb2 to your computer and use it in GitHub Desktop.
Save dasgib/d613899c6e630c5e6fb2 to your computer and use it in GitHub Desktop.
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| "#{asset_path(src)} #{size}" }.join(', ')
image_tag(source, options.merge(srcset: srcset))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment