手機端rem適應
這段時間做了幾個手機版的項目,因為沒有用框架,所以用rem來做適應,下面就分享一下
//第一種是比較簡單的代碼
(function(win) {
resizeRoot();
function resizeRoot() {
var wWidth = document.documentElement.clientWidth;
if (wWidth > 640) wWidth = 640;
else if (wWidth < 320) wWidth = 320;
document.documentElement.style.fontSize = wWidth * 0.0625 + ‘px‘
}
window.onresize = resizeRoot
})(window);
//第二種
!function (window) {
/* 設計圖文檔寬度 */
var docWidth = 750;
var doc = window.document,
docEl = doc.documentElement,
resizeEvt = ‘orientationchange‘ in window ? ‘orientationchange‘ : ‘resize‘;
var recalc = (function refreshRem () {
var clientWidth = docEl.getBoundingClientRect().width;
/* 8.55:小於320px不再縮小,11.2:大於420px不再放大 */
docEl.style.fontSize = Math.max(Math.min(20 * (clientWidth / docWidth), 11.2), 8.55) * 5 + ‘px‘;
return refreshRem;
})();
/* 添加倍屏標識,安卓為1 */
docEl.setAttribute(‘data-dpr‘, window.navigator.appVersion.match(/iphone/gi) ? window.devicePixelRatio : 1);
if (/iP(hone|od|ad)/.test(window.navigator.userAgent)) {
/* 添加IOS標識 */
doc.documentElement.classList.add(‘ios‘);
/* IOS8以上給html添加hairline樣式,以便特殊處理 */
if (parseInt(window.navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/)[1], 10) >= 8)
doc.documentElement.classList.add(‘hairline‘);
}
if (!doc.addEventListener) return;
window.addEventListener(resizeEvt, recalc, false);
doc.addEventListener(‘DOMContentLoaded‘, recalc, false);
}(window);
//引用這第二的就比較容易計算,設計圖尺寸以px / 100 = 實際rem 【例如 100px = 1rem ,24px=0.24rem】
手機端rem適應