Last active
December 17, 2015 01:49
-
-
Save ruemic/5531060 to your computer and use it in GitHub Desktop.
A simple responsive image extension for Webpop that abstracts picture markup into a single tag and serves dynamically resized and cached images via CDN.
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
# This generates markup for https://github.com/scottjehl/picturefill | |
# Customize this to suit your responsive image needs | |
markupForImage = (image, options) -> | |
resize = options.resize | |
width = options.width | |
height = options.height | |
output = | |
'<div data-picture data-alt="' + image.alt + '">' + | |
'<div data-src="' + image.src({ resize: resize, width: width, height: height }) + '"> </div>' + | |
'<div data-src="' + image.src({ resize: resize, width: width*2, height: height }) + '" data-media="(min-device-pixel-ratio: 2.0)"> </div>' + | |
'<div data-src="' + image.src({ resize: resize, width: width*2, height: height*2 }) + '" data-media="(min-width: 768px)"> </div>' + | |
'<div data-src="' + image.src({ resize: resize, width: width*4, height: height*4 }) + '" data-media="(min-width: 768px) and (min-device-pixel-ratio: 2.0)"> </div>' + | |
'<div data-src="' + image.src({ resize: resize, width: width*3, height: height*3 }) + '" data-media="(min-width: 1280px)"> </div>' + | |
'<div data-src="' + image.src({ resize: resize, width: width*6, height: height*6 }) + '" data-media="(min-width: 1280px) and (min-device-pixel-ratio: 2.0)"> </div>' + | |
'<div data-src="' + image.src({ resize: resize, width: width*4, height: height*4 }) + '" data-media="(min-width: 2000px)"> </div>' + | |
'<div data-src="' + image.src({ resize: resize, width: width*8, height: height*8 }) + '" data-media="(min-width: 2000px) and (min-device-pixel-ratio: 2.0)"> </div>' + | |
'</div>'+ | |
'<noscript>' + | |
'<img src="' + image.src({ resize: resize, width: width*2, height: height*2 }) + '" alt="' + image.alt + '" >' + | |
'</noscript>' | |
exports.responsive = (options, enclosed, scope) -> | |
obj = scope.lookup(options.field) | |
# Check if it's a gallery | |
if obj.images | |
{html: markupForImage(image, options)} for image in obj.images | |
else | |
{html: markupForImage(obj, options)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment