這篇文章將為大家詳細(xì)講解有關(guān)怎樣在手機(jī)端用rem+scss做適配,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

鎮(zhèn)雄ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書(shū)合作)期待與您的合作!
rem介紹
rem(font size of the root element)是指相對(duì)于根元素(即html元素)的字體大小的單位。
假設(shè)根元素的字體大小是10px, 則5rem的大小為 5*10=50px,例如
html{
font-size: 10px;
}
p{
width: 2rem; /* 2*10 = 20px;*/
margin: 1rem;
}rem來(lái)做適配
以前我們往往這樣做頁(yè)面:viewport width 設(shè)置為 device-width,然后選我們需要兼容設(shè)備的最小寬度(一般是320px)。根據(jù)這最小寬度來(lái)做頁(yè)面。單位使用px和百分比。在寬度不同的設(shè)備上,頁(yè)面的字體大小,內(nèi)容尺寸都是一樣的,不同的是,大屏的內(nèi)容間的空隙比小屏的大。所以這樣做的缺點(diǎn)就是,頁(yè)面在某些尺寸的設(shè)備上顯示的效果不好。
如果用rem來(lái)頁(yè)面,我們會(huì)根據(jù)不同的設(shè)備寬度在根元素上設(shè)置不同的字體大小。寬度越寬,字體越大。然后對(duì)原本使用px的地方使用rem來(lái)替換。這樣,字體大小,內(nèi)容尺寸,對(duì)隨著屏幕寬度的變大而變大。
首先js設(shè)置html的默認(rèn)字體大小(寫(xiě)在html頭部)
<script type="text/javascript">
var bodyElement = document.documentElement || document.body,
RC = {
w: 750,
h: 1206
}, //默認(rèn)設(shè)計(jì)稿寬高
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, // 默認(rèn)16是因?yàn)閔tml默認(rèn)字號(hào)是16px
html = document.getElementsByTagName("html")[0];
if(rightSize > currentSize){ // 長(zhǎng)屏
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>設(shè)置scss文件px轉(zhuǎn)rem
// 默認(rèn)16是html默認(rèn)字號(hào)
// 默認(rèn)750是設(shè)計(jì)稿默認(rèn)寬度
// $n是量取設(shè)計(jì)稿的距離
@charset "UTF-8";
@function rem($n) {
@return $n / (750 / 16)+rem;
}編輯方便調(diào)用的函數(shù):
@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);
}調(diào)用上面的函數(shù)(寬高距離用ps量實(shí)際距離即可,默認(rèn)設(shè)計(jì)稿寬750):
page1-img1{
width: rem(473);
height: rem(173);
@include centerlt(139, 767);
}關(guān)于怎樣在手機(jī)端用rem+scss做適配就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
網(wǎng)站題目:怎樣在手機(jī)端用rem+scss做適配
本文來(lái)源:http://www.chinadenli.net/article22/peescc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、ChatGPT、企業(yè)網(wǎng)站制作、定制開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)