web
2025-05-07 010ce04ba6e27f2bd603cec692d2695d7a8a3c1f
1
2
3
4
5
6
7
8
function resize () {
    const baseFontSize = 16
    const windowWidth = document.documentElement.clientWidth;
    const newVal = Math.round((windowWidth / 1920) * baseFontSize)
    document.documentElement.style.fontSize = `${newVal}px`;
}
resize() //先调用一次,适配初次加载屏幕大小
window.addEventListener('resize', resize);  //挂载窗口大小事件