移动端rem自适应

window.onload = window.onresize = function (event) {
    document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth / 750) + 'px';  
}

1rem=100px

原文地址:https://www.cnblogs.com/xiaomili/p/11531984.html