function computedREM(){
let HTML = document.documentElement,
winW = HTML.clientWidth;
HTML.style.fontSize = winW/320 * 100 + 'px';
}
computedREM();
window.addEventListener('resize',computedREM);
css中设置
html {
font-size: 100px;
}
设计稿的尺寸 宽度是320,也就是初始设备宽度