手機站開發遇到一些問題,設計頁面使用多大的尺寸?為此做了一些研究,除iphone特別一些外,目前市面上的安卓系統的實際顯示頁面的寬度,都是360px。
手機型號 | 豎屏寬度 |
iphone 5 | 320px |
iphone 6 | 375px |
iphone 6 plus | 414px |
nexus 4 | 384px |
android(大多數) | 360px |
前兩年,安卓的解析度多數還是240px 或320px,現在是360px,為了向下相容,向上也相容,最終將360px 定為設計的尺寸,後期可以使用css3 media queries即媒體查詢特性做進一步的兼容,兼容其他設備,以及做一些設備的橫屏的兼容。
附:螢幕尺寸測試的js程式碼,如下
<!DOCTYPE html> <html> <head> <title>屏幕尺寸测试</title> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="apple-mobile-web-app-capable" content="yes" /> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> </head> <body style="padding:0px;margin:0px;" scroll="no"> <script language="javascript"> var s = ""; s += "网页可见区域宽:"+ document.body.clientWidth; s += "<br>网页可见区域高:"+ document.body.clientHeight; s += "<br>网页可见区域宽:"+ document.body.offsetWidth +" (包括边线和滚动条的宽)"; s += "<br>网页可见区域高:"+ document.body.offsetHeight +" (包括边线的宽)"; s += "<br>网页正文全文宽:"+ document.body.scrollWidth; s += "<br>网页正文全文高:"+ document.body.scrollHeight; s += "<br>网页被卷去的高:"+ document.body.scrollTop; s += "<br>网页被卷去的左:"+ document.body.scrollLeft; s += "<br>网页正文部分上:"+ window.screenTop; s += "<br>网页正文部分左:"+ window.screenLeft; s += "<br>屏幕分辨率的高:"+ window.screen.height; s += "<br>屏幕分辨率的宽:"+ window.screen.width; s += "<br>屏幕可用工作区高度:"+ window.screen.availHeight; s += "<br>屏幕可用工作区宽度:"+ window.screen.availWidth; s += "<br>你的屏幕设置是 "+ window.screen.colorDepth +" 位彩色"; s += "<br>你的屏幕设置 "+ window.screen.deviceXDPI +" 像素/英寸"; document.write(s); </script> </body> </html>