移动端布局 根元素的计算

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);









以上是关于移动端布局 根元素的计算的主要内容,如果未能解决你的问题,请参考以下文章

移动端页面适配,rem布局

移动端rem自适应布局-最简单易懂的两种方法

移动端布局单位介绍之rem

移动端布局适配(px,em,rem,vh,vw)

移动端rem的用法

rem与移动端布局