Created
October 18, 2015 19:33
-
-
Save JoeNoPhoto/85fd1a5ce33cb2716910 to your computer and use it in GitHub Desktop.
Retina Image Mixin
This file contains 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
@mixin image-2x($image, $width, $height) { | |
@media (min--moz-device-pixel-ratio: 1.3), | |
(-o-min-device-pixel-ratio: 2.6/2), | |
(-webkit-min-device-pixel-ratio: 1.3), | |
(min-device-pixel-ratio: 1.3), | |
(min-resolution: 1.3dppx) { | |
background-image: url($image); | |
background-size: $width + px $height + px; | |
background-size: $width / 10 + rem $height / 10 + rem; | |
} | |
} | |
// Usage | |
.logo{ | |
background:url(logo.png) no-repeat; | |
@include image-2x(logo-hd.png", 120, 30); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment