移动端rem适配问题

时间:2023-03-03 11:20:50
将下面这段代码,放在头部的script标签里,可解决字体适配问题 比例是28px = 1rem 
function __setFontSize__(){document.documentElement.style.fontSize = Math.min( 640, Math.max(document.documentElement.clientWidth, 320) ) / 320 * 14 + 'px'}
__setFontSize__();
window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", function () {
setTimeout(function () {
__setFontSize__();
}, 100);
}, false);