1.JS加载顺序与加载方法
页面加载顺序通常是”从上往下”加载的,所以在内容区域,也就是body以及body包含的DOM还未被浏览器遍历之前,我们就应该将html的font-size计算好。我们应当把计算字体的js放在body之前,如下所示:
推荐——原生写法(优化加载,加快body的显示):
function resize(){
var htmlEle = document.documentElement;
var htmlWidth = window.innerWidth;
htmlEle.style.fontSize = 100/750*htmlWidth+'px';
}
resize();