The new MacBook Pro sports a retina display.
How do I create websites which serve @2x images for retina users, but standard images for everyone else?
|
The new MacBook Pro sports a retina display. How do I create websites which serve @2x images for retina users, but standard images for everyone else? |
|||||
|
|
In your HTML, create a
And in your CSS, add:
The magic here is in the CSS selector. We have a double-sized image (ninja-devices@2x.png) that we sub-in when the device reports a ‘device pixel ratio’ of 1.3 or more. Doing it this way allows you to save on bandwidth by delivering the original, smaller image to non-retina devices, and of course it looks great on the new MacBook. You can see the results at http://kickfolio.com Good luck with your websites. Cheers! Updated: The Mozilla prefix is actually: |
|||||||||||
|
|
We've been using the following to handle multiple cases where the ratio is 1.5 or higher - this takes more devices and browsers into account:
We have our entire site Retina enabled: http://www.embraceware.com/ |
|||||||||
|