移动端布局 根元素的计算
Posted neilisme
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端布局 根元素的计算相关的知识,希望对你有一定的参考价值。
var deviceW;
function computed() {
deviceW = document.documentElement.clientWidth || document.body.clientWidth;
if (deviceW > 750) return;
document.documentElement.style.fontSize = (deviceW / 750) * 100 + "px";
}
computed();
window.addEventListener("resize", function () {
computed();
}, false);
以上是关于移动端布局 根元素的计算的主要内容,如果未能解决你的问题,请参考以下文章