ホームページ  >  記事  >  php教程  >  モバイル適応のためのいくつかのソリューション (3 つのソリューション)

モバイル適応のためのいくつかのソリューション (3 つのソリューション)

高洛峰
高洛峰オリジナル
2016-12-05 13:03:195723ブラウズ

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;

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。