首页 > 代码库 > 移动端REM适配

移动端REM适配

var html = document.getElementsByTagName("html")[0];
function getFontSize(){
var width=document.documentElement.clientWidth
||document.body.clientWidth+"px";
var fontSize=(100/750)*width;
if(width>=750){
fontSize="100";
}
return fontSize;
}
html.style.fontSize=getFontSize()+"px";
window.onresize=function(){
setTimeout(function(){
html.style.fontSize=getFontSize()+"px";
},100)
};

移动端REM适配