今回は、携帯電話の適応に rem+scss を使用する方法と、携帯電話ユーザーが rem+scss の適応を使用する際の 注意事項 について説明します。実際のケースを見てみましょう。
rem の概要rem (ルート要素のフォント サイズ) は、ルート要素 (つまり、html 要素) に対する相対的なフォント サイズの単位を指します。
ルート要素のフォントサイズが10pxであるとすると、5remのサイズは5*10=50pxになります。例えば、html{ font-size: 10px; } p{ width: 2rem; /* 2*10 = 20px;*/ margin: 1rem; }
htmlヘッダーに記述されます)
<script type="text/javascript"> var bodyElement = document.documentElement || document.body, RC = { w: 750, h: 1206 }, //默认设计稿宽高 GC = { w: document.documentElement.clientWidth || window.innerWidth || screen.width, h: document.documentElement.clientHeight || window.innerHeight || screen.height }; function setFontSize(){ var rightSize = parseFloat((RC.w / RC.h).toFixed(1)), currentSize = parseFloat((GC.w / GC.h).toFixed(1)), lastHTMLSize = 16, // 默认16是因为html默认字号是16px html = document.getElementsByTagName("html")[0]; if(rightSize > currentSize){ // 长屏 lastHTMLSize = 16; }else if(rightSize < currentSize){ //宽屏 lastHTMLSize = (RC.h / GC.h * GC.w) / RC.w * 16; } html.style.fontSize = GC.w / lastHTMLSize + 'px'; } setFontSize(); </script>
// 默认16是html默认字号 // 默认750是设计稿默认宽度 // $n是量取设计稿的距离 @charset "UTF-8"; @function rem($n) { @return $n / (750 / 16)+rem; }
@function getTop($n) { @return ($n - 1206 / 2) / (750 / 16)+rem; } @function getLeft($n) { @return ($n - 750 / 2) / (750 / 16)+rem; } @function getRight($n) { @return (($n - 750) / 2) / (750 / 16)+rem; } @mixin center($left, $top) { //左右居中 上变 position: absolute; left: 50%; top: rem($top); margin: 0 0 0 getLeft($left); } @mixin centerlt($left, $top) { //上下,左右居中 position: absolute; left: 50%; top: 50%; margin: getTop($top) 0 0 getLeft($left); } @mixin centerrt($right, $top) { //上下,左右居中 position: absolute; right: 50%; top: 50%; margin: getTop($top) getRight($right) 0 0; } @mixin middlert($right, $top) { //上下居中 右变 position: absolute; right: rem($right); top: 50%; margin: getTop($top) 0 0 0; } @mixin centerb($left, $bottom) { //左右居中 下变 position: absolute; left: 50%; bottom: rem($bottom); margin: 0 0 0 getLeft($left); } @mixin leftTop($left, $top) { //左变 上变 position: absolute; left: rem($left); top: rem($top); } @mixin rightTop($right, $top) { //右变 上变 position: absolute; right: rem($right); top: rem($top); } @mixin leftBottom($left, $bottom) { //右变 上变 position: absolute; left: rem($left); bottom: rem($bottom); }
page1-img1{ width: rem(473); height: rem(173); @include centerlt(139, 767); }
H5 の WebGL を使用して、同じインターフェイス上で json チャートと echarts チャートを作成する方法
H5 の新しいセマンティック タグ機能は次のようになります
を使用します
以上が携帯電話での適応に rem+scss を使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。