webapp在製做時候,頁面上要加入viewport標籤,用來進行適配;css
viewport的meta標籤,指的是在移動端顯示的時候,viewport是多大?移動端的瀏覽器是屏幕寬,viewport通常(手機瀏覽器)默認的是960px左右,就把頁面壓縮到html
960px顯示,因此是比手機屏幕寬的喲.等比放小,因此,爲了顯示的好看,要設定viewport爲屏幕寬,就是:如此標籤web
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
設定width就是設備的寬度,而後就將頁面大小縮放這麼大顯示.因此,在不少時候,在webapp頁面的時候,咱們直接在pc端測試就行,直接設計640px的寬度來作,而後html和body 的瀏覽器
寬度設爲100%;主要容器寬度就是640px,而後,適配在手機端的時候,就會將其略壓縮顯示在手機的viewport上,大概樣子差很少,並且,在加上rem的適配,通常沒問題的.app
而rem適配,是根據html這個根元素來進行的,1rem爲這個根元素的字體大小.若將其設爲10px,那麼1rem就是10px,以後的全部都用rem來表示,而後,在用js或者是css的media query來實現不一樣屏幕大小時候不容的html的字體,而後,其他全部部分,都會跟隨這成比例改變了的.就是這個原理的.webapp
講的,實際上也就是兩點:1,viewport的做用;2,rem進行適配,固然也有用100%比的,不過out了測試
列出測試成功的rem適配的css和js代碼:字體
css:spa
@media only screen and (max-width: 320px){html{font-size: 9px;} } @media only screen and (min-width: 320px) and (max-width: 352px){html{font-size: 10px;} } @media only screen and (min-width: 352px) and (max-width: 384px){html{font-size: 11px;} } @media only screen and (min-width: 384px) and (max-width: 416px){html{font-size: 12px;} } @media only screen and (min-width: 416px) and (max-width: 448px){html{font-size: 13px;} } @media only screen and (min-width: 448px) and (max-width: 480px){html{font-size: 14px;} } @media only screen and (min-width: 480px) and (max-width: 512px){html{font-size: 15px;} } @media only screen and (min-width: 512px) and (max-width: 544px){html{font-size: 16px;} } @media only screen and (min-width: 544px) and (max-width: 576px){html{font-size: 17px;} } @media only screen and (min-width: 576px) and (max-width: 608px){html{font-size: 18px;} } @media only screen and (min-width: 608px) and (max-width: 640px){html{font-size: 19px;} } @media only screen and (min-width: 640px){html{font-size: 20px;} }
js:scala
(function (doc, win) { var docEl = doc.documentElement, resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', recalc = function () { var clientWidth = docEl.clientWidth; if (!clientWidth) return; if(clientWidth>640){ clientWidth = 640; } //這行代碼有詐,講10改爲更小的數字,好比5,就沒有反應了...字大小能夠,但 //div的寬高就不變了也是醉了 docEl.style.fontSize = 10 * (clientWidth / 320) + 'px'; }; if (!doc.addEventListener) return; win.addEventListener(resizeEvt, recalc, false); doc.addEventListener('DOMContentLoaded', recalc, false); })(document, window);