Skip to content

Instantly share code, notes, and snippets.

@SteveDesmond-ca
Created October 27, 2015 14:50
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 SteveDesmond-ca/215a93a4c295d28731bb to your computer and use it in GitHub Desktop.
Save SteveDesmond-ca/215a93a4c295d28731bb to your computer and use it in GitHub Desktop.
server-side responsive images (client-side)
var x = screen.width * window.devicePixelRatio;
var y = screen.height * window.devicePixelRatio;
var url = '/image?id=' + id + '&x=' + x + '&y=' + y;
$('.lightbox').css('background-image', 'url("' + url + '")');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment