|
|
#1 |
|
testing retina display media queries
I made an image sprite for some icons for a band's website that includes bigger icons for high resolution displays.
While the normal icons load fine and are valid css, the retina/high resolution icons don't apparently. I came across this snippet here to make it work, but it doesn't validate nor work. http://css-tricks.com/snippets/css/r...y-media-query/Here's the code: Code:
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min--moz-device-pixel-ratio: 2),
only screen and ( -moz-min-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
.social a{
background-image: url(../images/logos/sprites.png);
background-repeat:no-repeat;
display:block;
height:100px;
text-indent:-9999em;
width:100px;
}
.facebook {
background-position:0 -120px;
}
.facebook:focus,.facebook:hover {
background-position:0 -220px;
}
.youtube {
background-position:-130px -120px;
}
.youtube:focus,.youtube:hover {
background-position:-130px -220px;
}
.twitter {
background-position:-220px -120px;
}
.twitter:focus,.twitter:hover {
background-position:-220px -220px;
}
.bandcamp {
background-position:-310px -120px;
}
.bandcamp:focus,.bandcamp:hover {
background-position:-310px -220px;
}
}
Any help would be greatly appreciated.
Last edited by olup; Feb 25, 2013 at 08:58 AM. Reason: Please use code tags |
|
|
|
0
|
|
|
#2 |
|
The below media query works in all browsers and is considered future friendly:
Code:
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi) {
/* Retina-specific stuff here, put your CSS sprite stuff here for Retina */
}
__________________
Jim Goldbloom Sr. Web Developer, owner GoldTechPro, LLC http://www.GoldTechPro.com
|
|
|
|
0
|
|
|
#3 | |
|
Quote:
However I'm still confused what to implement within the brackets. Is it the actual sprite like I did with the non retina icons, using background-positioning or this ? Code:
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
span.location {
background-image: url(location@2x.png);
background-size: 50px 50px;
}
|
||
|
|
0
|
|
|
#4 |
|
Use my responsive code, not yours. Between the { and } insert any CSS that generates your sprites based on the high quality version intended for retina displays only. I did not simply copy/paste your previous CSS for the sprite because I assume it's the original low resolution version. If not, use that.
__________________
Jim Goldbloom Sr. Web Developer, owner GoldTechPro, LLC http://www.GoldTechPro.com
|
|
|
|
0
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 11:04 AM.







Jim Goldbloom
Linear Mode
