rem(font size of the root element)是指相對於根元素(即html元素)的字體大小的單位。
假設根元素的字體大小是10px, 則5rem的大小為5*10=50px,例如
html{ font-size: 10px;}p{ width: 2rem; /* 2*10 = 20px;*/ margin: 1rem;}rem來做適配
以前我們常這樣做頁面:viewport width 設定為device-width,然後選我們需要相容裝置的最小寬度(一般是320px)。根據這最小寬度來做頁面。單位使用px和百分比。在寬度不同的裝置上,頁面的字體大小,內容尺寸都是一樣的,不同的是,大螢幕的內容間的空隙比小螢幕的大。所以這樣做的缺點就是,頁面在某些尺寸的裝置上顯示的效果不好。
如果用rem來頁面,我們會根據不同的裝置寬度在根元素上設定不同的字體大小。寬度越寬,字體越大。然後對原本使用px的地方使用rem來替換。這樣,字體大小,內容尺寸,對隨著螢幕寬度的變大而變大。
首先js設定html的預設字體大小(寫在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.Float(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>
設定scss檔px轉rem
//預設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);}
呼叫上面的函數(寬高距離用ps量實際距離即可,預設設計稿寬750):
.page1-img1{ width: rem(473); height: rem(173); @include centerlt(139, 767);}
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VeVb武林網。