码迷,mamicode.com
首页 > 移动开发 > 详细

移动端REM适配

时间:2017-04-28 18:32:33      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:size   fonts   style   doc   cli   font   win   get   移动   

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适配

标签:size   fonts   style   doc   cli   font   win   get   移动   

原文地址:http://www.cnblogs.com/wzh1995/p/6782357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!