Created
June 12, 2013 13:57
-
-
Save verteb/5765504 to your computer and use it in GitHub Desktop.
Mobile : Prevent IOS Landscape Zoom
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
/* iPhone */ | |
@media only screen and (width:320px) and (device-width:320px) and (device-height:480px) and (orientation: landscape) { | |
body { | |
-webkit-transform: scale(0.667); | |
-webkit-transform-origin: top right; | |
position: absolute; | |
right: 0; | |
top: 0; | |
width: 480px; | |
} | |
} | |
/* iPad */ | |
@media only screen and (width:768px) and (device-width:768px) and (device-height:1024px) and (orientation: landscape) { | |
body { | |
-webkit-transform: scale(0.75); | |
-webkit-transform-origin: top right; | |
position: absolute; | |
right: 0; | |
top: 0; | |
width: 1024px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment