码迷,mamicode.com
首页 > 移动开发 > 详细

适配ios设备集锦

时间:2016-02-24 15:33:53      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

 本文收录一下关于ios适配的media query规则

 

  • iPad:
Js代码  技术分享
  1. @media only screen  
  2. and (min-device-width:768px)  
  3. and (max-device-width:1024px) {  
  4.    //....  
  5. }  

 

  • iPad横屏:
Js代码  技术分享
  1. @media only screen  
  2. and (min-device-width:768px)  
  3. and (max-device-width:1024px)   
  4. and (orientation: landscape) {  
  5.    //....  
  6. }  

 

 

 

  • iPad竖屏:
Js代码  技术分享
  1. @media only screen  
  2. and (min-device-width:768px)  
  3. and (max-device-width:1024px)  
  4. and (orientation:portrait) {  
  5.    //......  
  6. }  

 

    iPad3和 ipad4 都有Retina

 

 

  • Retina iPad
Js代码  技术分享
  1. @media only screen  
  2. and (min-device-width:768px)  
  3. and (max-device-width:1024px)  
  4. and (-webkit-min-device-pixel-ratio:2) {  
  5.     //....  
  6. }  

 

 

  •    iPad1和iPad2
Js代码  技术分享
  1. @media only screen  
  2. and (min-device-width:768px)  
  3. and (max-device-width:1024px)  
  4. and (-webkit-min-device-pixel-ratio:1) {  
  5.    //...  
  6. }  

 

 

  • iPhone 2G- 4S
Js代码  技术分享
  1. @media only screen  
  2. and (min-device-width:320px)  
  3. and (max-device-width:480px) {  
  4.     //....  
  5. }  

 

 

  • iPhone5
Js代码  技术分享
  1. @media only screen  
  2. and (min-device-width:320px)  
  3. and (max-device-width:568px) {  
  4.     //....  
  5. }  

 

 

   iPad mini 也是和 iPad 1 和 2 一样

适配ios设备集锦

标签:

原文地址:http://www.cnblogs.com/yemanhuainv/p/5213124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!