function setRem() {
const ui_w = 375
const client_w = document.documentElement.clientWidth || document.body.clientWidth
console.log(ui_w, client_w)
// 如果设备宽度大于1920 等于1920
client_w = client_w > 1920 ? 1920 : client_w
// 如果设备宽度小于800 等于800
client_w = client_w < 800 ? 800 : client_w
const html = document.getElementsByTagName('html')[0]
html.style.fontSize = (client_w / ui_w) * 4 + 'px'
}
const timer = null
setRem()
window.onresize = function () {
clearTimeout(timer)
timer = setTimeout(setRem, 300)
}
// 当页面加载的时候 也要调用一下setRem 目的 默认 把html 根节点的字体大小 设置为10px
// window.οnlοad=setRem