标签: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)
};
标签:size fonts style doc cli font win get 移动
原文地址:http://www.cnblogs.com/wzh1995/p/6782357.html