zhangzeyang
10/31/2017 - 11:48 AM

_rem

rem

//初始化font-size
function calSize(){
    var clientWidth = window.innerWidth || document.documentElement.clientWidth;
    var fontSize = clientWidth * 100 / 375;
    document.documentElement.style.fontSize = fontSize + "px";
}
calSize();
window.addEventListener('resize',calSize)