自己在公司抢红包活动中为了达到自适应使用html字号设为vw 其他元素使用rem 跟resize重绘达到自适应,偶然看到美团是这么干的。
(function () { function o() { document.documentElement.style.fontSize = (document.documentElement.clientWidth > 414 ? 414 : document.documentElement.clientWidth) / 12 + "px" } var e = null; window.addEventListener("resize", function () { clearTimeout(e), e = setTimeout(o, 300) }, !1), o() })(window);
效果大同小异。
时间: 2024-11-06 16:27:20