Last active
February 29, 2016 16:45
-
-
Save gearmobile/72e90dd82380f1efadc4 to your computer and use it in GitHub Desktop.
Stylus Mixin Static Retina Image
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
retinaBackground($image, $ext = 'png') { | |
// pixel ratio of 1; background size is 100% (or 100px image) | |
background-image url('../images/' + $image + '.' + $ext) | |
// pixel ratio of 2; background-size is 200% (or 200px image) | |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { | |
background-image url('../images/' + $image + '@2x.' + $ext) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment