Skip to content

Instantly share code, notes, and snippets.

@abovedave
Created August 21, 2014 09:23
Show Gist options
  • Save abovedave/ea846f79a2b139676bc9 to your computer and use it in GitHub Desktop.
Save abovedave/ea846f79a2b139676bc9 to your computer and use it in GitHub Desktop.
Retina images replacement
if(window.devicePixelRatio >= 1.2){
var images = document.getElementsByTagName('img');
for(var i=0;i < images.length;i++){
var attr_2x = images[i].getAttribute('data-2x');
if(attr_2x){
images[i].src = attr_2x;
}
}
} else {
var images = document.getElementsByTagName('img');
for(var i=0;i < images.length;i++){
var attr_1x = images[i].getAttribute('data-1x');
if(attr_1x){
images[i].src = attr_1x;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment