Server side solution which may or may not fit your stack
Server-side logic/directory structure to map viewport dimensions to image dimensions
Resizes are not taken into account
LQIP
Low Quality Image Placeholder
Example
<imgsrc="cat_lq.jpg"data-normal-src="cat.jpg"data-hq-src="cat_hq.jpg">
...
<script>var images = document.getElementsByTagName("img");
var imagesLen = images.length;
var hd = screen.width > 800 || devicePixelRatio > 1;
for(var i = 0; i < images.length; i++)
images[i].src = hd?
images[i].dataset.hqSrc:
images[i].dataset.normalSrc;
</script>
Advantages
LQ images download fast. Prog JPEG-like
Can work with no server side logic
LQ image displayed when JS fails
Disadvantages
Double download, so some BW waste
Markup contains multiple resources
Final quality image download starts late (near DCL)
Picturefill
Based of the <picture> markup pattern
Example
<spandata-picture><spandata-media="screen and (min-width:1600px)"data-src="wide.jpg"></span><spandata-media="screen and (min-width:800px)"data-src="middle.jpg"></span><spandata-media="screen and (min-width:400px)"data-src="narrow.jpg"></span><spandata-src="tiny.jpg"></span><noscript><imgsrc="fallback.jpg"></noscript></span>
...
<scriptsrc="picturefill.js"></script>
Example #2
<spandata-picture><spandata-media="screen and (min-width:1600px)"data-srcset="wide1x.jpg 1x,
wide2x.jpg 2x"></span><spandata-media="screen and (min-width:800px)"data-srcset="middle1x.jpg 1x,
middle2x.jpg 2x"></span><spandata-media="screen and (min-width:400px)"data-srcset="narrow1x.jpg 1x,
narrow2x.jpg 2x"></span><spandata-srcset="tiny1x.jpg 1x,
tiny2x.jpg 2x"></span><noscript><imgsrc="fallback.jpg"></noscript></span>
...
<scriptsrc="picturefill.js"></script>
What does it do?
Meant for art-direction
Can do viewport switching when abused
DPR switching using data-srcset in an experimental branch
Advantages
No double download
With scripts disabled, there's a fallback
Using MQs which is a familiar pattern to authors
Disadvantages
Markup contains multiple resources
MQs in the markup can get verbose
Image download starts only after DCL
x-picture
Web components based solution
Web components based <picture> polyfill
Image download triggered when element is parsed (in supporting browsers)
Depends on polymer
Example
<html><head><scriptsrc="x-picture.js"></script></head><body><x-picture><sourcemedia="screen and (min-width:1600px)"srcset="wide1x.jpg 1x, wide2x.jpg 2x"><sourcemedia="screen and (min-width:800px)"srcset="middle1x.jpg 1x, middle2x.jpg 2x"><sourcemedia="screen and (min-width:400px)"srcset="narrow1x.jpg 1x, narrow2x.jpg 2x"><sourcesrcset="tiny1x.jpg 1x, tiny2x.jpg 2x"><noscript><imgsrc="fallback.jpg"></noscript></x-picture></body></html>
Mobify.js
A whole new level of Bat-sh*t-loco-insane™ hack
What?
Enables script access to HTML document before preloder or parser see it
How?????
Inline script at the doc head injects a <plaintext> tag and downloads mobify.js
Browser treats the rest of the document as text
HTML chunks are read & processed as they're downloaded
Once HTML is done, document.open() and document.write() the new HTML
Page load starts over, preloader and all
Advantages
No markup changes needed
No double download
Preloader works (after a delay)
No JS means no optimization, but everything works
Disadvantages
Blocking JS at the page's start
Entire HTML is downloaded before parsing start
Compatibility issues
Lots of invasive JS may be hard on legacy devices
JS failure after plaintext injection can result in a blank page
Service Worker
What?
Originally, an offline API
Enables URL rewriting in the browser
Implementation underway in FF & Chrome
Let's use that to hack responsive images!!!
Unfortunately
Doesn't (yet?) support first load
Can't access window
Browser support will take time
Compressive images
No markup, no JS
Take 2x images
Compress them to LQ
Let browser handle resize
Looks good on retina
Not bigger than 1x image
Downsides
Memory footprint
Decoding and resizing speed
"Looks good" is subjective
Only DPR switching, up to 2x
Bandwidth testing
Active bandwidth testing
e.g. foresight.js
Download an object and measure
Download images according to measured BW
Adds a blocking, useless resource
Should I do that???
Passive bandwidth testing
Measure HTML download time - NavTiming
Download images according to measured BW
Less bad, but still not a good idea
Related stuff
Image resizing services
CMS plugins
Grunt plugins
How to decide?
Can I modify the page at all?
Can I modify the markup to contain the image data?
<imgsrc-1="(max-width: 400px) pic-small.jpg"src-2="(max-width: 1000px) pic-medium.jpg"src="pic-large.jpg"alt="Obama talking to a soldier in hospital scrubs.">