js rem的换算 适配各个屏幕
(function(){
function computed(){
let winW = document.documentElement.clientWidth,
desW = 750,
root = 100,
ratio = winW / desW * root;
if(winW > desW){
document.documentElement.style.fontSize = root + 'px';
return
}
document.documentElement.style.fontSize = ratio + 'px';
}
computed();
window.addEventListener('resize',computed);
})();

浙公网安备 33010602011771号