Skip to content

Instantly share code, notes, and snippets.

@xiaojue
Created October 13, 2015 13:48
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save xiaojue/0615797dd6a7160177bd to your computer and use it in GitHub Desktop.
Save xiaojue/0615797dd6a7160177bd to your computer and use it in GitHub Desktop.
rem.js
/*
* rem.js
* v0.1.1
* fixed 2015-3-12
*/
(function (win){
var doc = win.document,
html = doc.documentElement,
option = html.getAttribute('data-use-rem');
if( option === null ){
return;
}
// defaut baseWidth : 640px;
var baseWidth = parseInt(option).toString() === 'NaN' ? 640 : parseInt(option);
var grids = baseWidth / 100;
var clientWidth = html.clientWidth || 320;
// set rem first
html.style.fontSize = clientWidth / grids + 'px';
// create testDom
var testDom = document.createElement('div');
var testDomWidth = 0;
var adjustRatio = 0;
testDom.style.cssText = 'height:0;width:1rem;';
doc.body.appendChild(testDom);
var calcTestDom = function(){
testDomWidth = testDom.offsetWidth;
if( testDomWidth !== Math.round(clientWidth / grids) ){
adjustRatio = clientWidth/grids/testDomWidth;
var reCalcRem = clientWidth*adjustRatio / grids;
html.style.fontSize = reCalcRem + 'px';
} else{
doc.body.removeChild(testDom);
}
};
// detect if rem calc is working directly
// if not , recalc and set the rem value
setTimeout(calcTestDom, 20);
var reCalc = function(){
var newCW = html.clientWidth;
if ( newCW === clientWidth ){
return;
}
clientWidth = newCW;
html.style.fontSize = newCW*(adjustRatio?adjustRatio:1) / grids + 'px';
// if( testDom ) setTimeout(calcTestDom, 20);
};
// Abort if browser does not support addEventListener
if (!doc.addEventListener){
return;
}
var resizeEvt = 'orientationchange' in win ? 'orientationchange' : 'resize';
win.addEventListener(resizeEvt, reCalc, false);
// detect clientWidth is changed ?
doc.addEventListener('DOMContentLoaded', reCalc, false);
})(window);
@liuweihai
Copy link

1234

@liuweihai
Copy link

12354

@luchaoWork
Copy link

不能用啊

@Nutlee
Copy link

Nutlee commented Jan 23, 2017

您好,请教一下啊 大概什么具体情况下才会出现rem的换算误差 需要通过 adjustRatio 来修正??之前的 rem 方案都是直接用的,没遇到过这种情况,谢谢..

@Diry2017
Copy link

Diry2017 commented Oct 9, 2017

。。。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment