1. js を使用して
(function (doc, win) { var docEl = doc.documentElement, resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', recalc = function () { var clientWidth = docEl.clientWidth; if (!clientWidth) return; docEl.style.fontSize = 100 * (clientWidth / 750) + 'px'; }; if (!doc.addEventListener) return; win.addEventListener(resizeEvt, recalc, false); doc.addEventListener('DOMContentLoaded', recalc, false); })(document, window);
を調整します。 例: 100px=0.1rem; 1px=0.01rem; 2. js+less を使用して
(function (win) { function setUnitA() { document.documentElement.style.fontSize = document.documentElement.clientWidth / 10 + "px"; } var h = null; window.addEventListener("resize", function () { clearTimeout(h); h = setTimeout(setUnitA, 300); }, false); setUnitA(); })(window);
を調整します。
レス: ファイルの先頭に @unit: 750/10rem を定義し、css ファイル全体の単位として @unit を直接使用します。
例: 100px=100/@unit;10px=10/@unit;1px=1/@unit;
3. 適応を減らします。
html { font-size: 20px; } @media only screen and (min-width: 401px) { html { font-size: 25px !important; } } @media only screen and (min-width: 428px) { html { font-size: 26.75px !important; } } @media only screen and (min-width: 481px) { html { font-size: 30px !important; } } @media only screen and (min-width: 569px) { html { font-size: 35px !important; } } @media only screen and (min-width: 641px) { html { font-size: 40px !important; } } @unit: 40rem;
例: 100px=100/@unit;10px=10/@unit;1px=1/@unit;