首頁  >  文章  >  web前端  >  iphone6等行動裝置的css自適應

iphone6等行動裝置的css自適應

巴扎黑
巴扎黑原創
2016-12-06 11:11:561157瀏覽

關鍵是 
 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=320,maximum-scale=1.3,user-scalable=no">
</head>
<style type="text/css">
html{font-size:100px;}
body{font-size:0.14rem/*实际相当于14px*/}
@media(min-device-width:375px)and(max-device-width:667px)and(-webkit-min-device-pixel-ratio:2){
html{font-size:117.1875px;}
}
/*iphone6plus*/
@media(min-device-width:414px)and(max-device-width:736px)and(-webkit-min-device-pixel-ratio:3){
html{font-size:129.375px;}
}
</style>
<script type="text/javascript">
(function(doc,win){
var docEl=doc.documentElement,
resizeEvt="onorientationchange" in window ? "orientationchange" : "resize",
recalc=function(){
console.log(resizeEvt);
var clientWidth=docEl.clientWidth;
if(!clientWidth)return;
docEl.style.fontSize=100*(clientWidth/320)+&#39;px&#39;;
};
//AbortifbrowserdoesnotsupportaddEventListener
if(!doc.addEventListener)return;
win.addEventListener(resizeEvt,recalc,false);
doc.addEventListener(&#39;DOMContentLoaded&#39;,recalc,false);
})(document,window);
</script>
<body>
hello
</body>
</html>


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn