Loading... <div class="tip inlineBlock warning"> 注:基数为 100 </div> 引入代码 ``` <script> !(function(win, doc) { function setFontSize() { var winWidth = window.innerWidth; doc.documentElement.style.fontSize = (winWidth / 1080) * 100 + 'px'; } var evt = 'onorientationchange' in win ? 'orientationchange': 'resize'; var timer = null; win.addEventListener(evt, function() { clearTimeout(timer); timer = setTimeout(setFontSize, 300); }, false); win.addEventListener("pageshow", function(e) { if (e.persisted) { clearTimeout(timer); timer = setTimeout(setFontSize, 300); } }, false); //初始化 setFontSize(); } (window, document)); </script> ``` 最后修改:2022 年 05 月 17 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 0 分享不易,请老板打赏。