rem.js 273 Bytes 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 (function(d, w) { const doc = d.documentElement; function rem() { const width = Math.min(doc.getBoundingClientRect().width, 768); doc.style.fontSize = width / 7.5 + 'px'; } rem(); w.addEventListener('resize', rem); })(document, window);