媒体查询-手机尺寸参考
前端笔记 2017-11-23 19:52:31

 

XML/HTML Code复制内容到剪贴板
  1. <meta charset="UTF-8" />  
  2.     <meta name="renderer" content="webkit" />  
  3.     <meta http-equiv="X-UA-Compatible" content="IE=EDGE, chrome=1">    
  4.     <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />  
  5.     <meta name="apple-mobile-web-app-capable" content="yes" />  
  6.     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />  
  7.     <meta name="msapplication-tap-highlight" content="no" />  
  8.     <meta name="format-detection" content="telephone=no" />    
  9.   
  10.   
  11.   
  12.   
  13. /@media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone5,因为5和4的屏幕宽度一样 */}  
  14. @media only screen and (max-device-width :480px){ }  
  15. @media only screen and (min-device-width :481px){ }  
  16.   
  17. /*6*/  
  18. @media (min-device-width : 375px) and (max-device-width : 667px) and (-webkit-min-device-pixel-ratio : 2){ }  
  19.   
  20. /*6+*/  
  21. @media (min-device-width : 414px) and (max-device-width : 736px) and (-webkit-min-device-pixel-ratio : 3){ }  
  22.   
  23. /*魅族*/  
  24. @media only screen and (min-device-width :1080px) and (-webkit-min-device-pixel-ratio : 2.5){ }  
  25.   
  26. /*mate7*/  
  27. @media only screen and (min-device-width :1080px) and (-webkit-min-device-pixel-ratio : 3){ }  
  28.   
  29. /*4 4s*/  
  30. @media only screen and (device-height :480px) and (-webkit-device-pixel-ratio:2){ }  
  31.   
  32. @media screen and (min-width: 320px) and (max-width: 480px) {  }  
  33.   
  34. /* 平板之类的宽度 1024 以下设备 */  
  35. @media only screen and (min-width: 321px) and (max-width: 1024px) {  
  36. body {  
  37. background: blue;  
  38. }  
  39. }  
  40.   
  41. /* PC客户端或大屏幕设备: 1028px 至更大 */  
  42. @media only screen and (min-width: 1029px) {  
  43. body {  
  44. background: green;  
  45. }  
  46. }  
  47.   
  48. /* 竖屏 */  
  49. @media screen and (orientation:portrait) and (max-width: 720px) {对应样式}  
  50.   
  51. /* 横屏 */  
  52. @media screen and (orientation:landscape){对应样式}  
  53.   
  54. iPhone5s 504*320  

 

本文来自于:http://www.yoyo88.cn/note/frontend/230.html

Powered by yoyo苏ICP备15045725号