Created
July 11, 2010 17:24
-
-
Save aaronrussell/471694 to your computer and use it in GitHub Desktop.
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
div { | |
background-image: url('/images/background.png'); | |
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) { | |
background-image: url('/images/hi-background.png'); | |
} | |
} |
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 for creating both standard background image | |
and hi-res iPhone 4 background image | |
*/ | |
@mixin dual-bg-image($image) { | |
background-image: image_url($image); | |
// media query from: http://miniapps.co.uk/blog/post/targeting-iphone-4-using-css-media-queries/ | |
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) { | |
background-image: image_url('hi-'+$image); | |
} | |
} | |
div { | |
@include dual-bg-image('background.png'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment