移动端布局方案

页头设置

  • 移动端需要禁止用户缩放,否则体验非常差。
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- 设置在苹果手机上以应用模式启动时,是否全屏 -->
<meta name='apple-touch-fullscreen' content='yes' />
<!-- 是否识别手机号码、电子邮件、地址 等-->
<meta name="format-detection" content="telephone=no,email=no,address=no" />
<!-- 让360双核浏览器用webkit内核渲染页面 -->  
<meta name="renderer" content="webkit" />
<!-- 避免IE使用兼容模式 -->  
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
<!-- 允许全屏模式浏览,隐藏浏览器导航栏-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- 微信缓存 -->  
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no" />
<!-- 是否启动webapp功能,会删除默认的苹果工具栏和菜单栏。 -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- 这个主要是根据实际的页面设计的主体色为搭配来进行设置。 -->
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- 忽略页面中的数字识别为电话号码,email识别 -->
<meta name="format-detection"content="telephone=no, email=no" />
<!-- 启用360浏览器的极速模式(webkit) -->
<meta name="renderer" content="webkit">
<!-- 避免IE使用兼容模式 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- 针对手持设备优化,主要是针对一些老的不识别viewport的浏览器,比如黑莓 -->
<meta name="HandheldFriendly" content="true">
<!-- 微软的老式浏览器 -->
<meta name="MobileOptimized" content="320">
<!-- uc强制竖屏 -->
<meta name="screen-orientation" content="portrait">
<!-- QQ强制竖屏 -->
<meta name="x5-orientation" content="portrait">
<!-- UC强制全屏 -->
<meta name="full-screen" content="yes">
<!-- QQ强制全屏 -->
<meta name="x5-fullscreen" content="true">
<!-- UC应用模式 -->
<meta name="browsermode" content="application">
<!-- QQ应用模式 -->
<meta name="x5-page-mode" content="app">
<!-- windows phone 点击无高光 -->
<meta name="msapplication-tap-highlight" content="no">

重置样式

  • 重置字体大小:使用语义标记不会影响样式
  • 重置块边距:只有在需要时才应用间距
  • 重置表格:表格数据只占用它所需的空间
  • 保留了行内间距:按钮和输入保持其默认布局
  • 设置边框的大小:边框和划线不会影响设置的尺寸
  • 设置响应的媒体元素:以便图像和嵌入与浏览器的宽度成比例
<link href="https://cdn.bootcss.com/minireset.css/0.0.2/minireset.min.css" rel="stylesheet">

初始化样式

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td {
    margin: 0;
    padding: 0;
}
body, button, input, select, textarea {
    font: 12px/1.5 tahoma, arial, \5b8b\4f53;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}
address, cite, dfn, em, var {
    font-style: normal;
}
code, kbd, pre, samp {
    font-family: couriernew, courier, monospace;
}
small {
    font-size: 12px;
}
ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
    text-decoration: none;
    outline: none;
    background: none;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
sup {
    vertical-align: text-top;
}
sub {
    vertical-align: text-bottom;
}
legend {
    color: #000;
}
fieldset, img {
    border: 0;
}
button, input, select, textarea {
    font-size: 100%;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
}

公共样式

body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {margin:0;padding:0;}
ol,li,ul,dl,dt,dd {list-style:none;}
table {border-collapse:collapse;border-spacing:0}
html {-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%; /* 解决IOS默认滑动很卡的情况 */-webkit-overflow-scrolling : touch;}
a {text-decoration: none; color: #fff; font-family: 'Microsoft YaHei', Tahoma, Arial, sans-serif;}
a:hover {text-decoration: none;  outline: none;}
h1, h2, h3, h4, h5, h6 {font-size: 100%;font-family: 'Microsoft YaHei';}
img {border: none;}
input{font-family: 'Microsoft YaHei';}
/* 禁止缩放表单 */
input[type="submit"], input[type="reset"], input[type="button"], input {resize: none;border: none;}
/* 取消链接高亮  */
body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
/* 设置HTML5元素为块 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
/* 图片自适应 */
img {width: 100%;height: auto;width: auto\9; /* ie8 */-ms-interpolation-mode: bicubic;/*为了照顾ie图片缩放失真*/}
em, i {font-style: normal;}
/*禁用了文本的拖拉,尤其在谷歌下*/
textarea {resize:none;  }
/* 不够的单词自动换行 而不会被截掉 */
p {word-wrap:break-word; }
/* 移动端点击a链接出现蓝色背景问题解决 */
a:link,a:active,a:visited,a:hover {background: none; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highlight-color: transparent;}
/*浮动设置*/
.fl {float: left;}
.fr {float: right;}
.clearfix {zoom: 1;}
.clearfix:after {content: "";display: block;visibility: hidden;height: 0;clear: both;}
/*单行溢出*/
.one-txt-cut{overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
/*多行溢出 手机端使用*/
.txt-cut{overflow : hidden;text-overflow: ellipsis;display: -webkit-box;/* -webkit-line-clamp: 2; */-webkit-box-orient: vertical;}
.overflow {overflow:hidden; }
/*宽度设置*/
.w50{width: 50%;}
.w25{width: 25%;}
.w20{width: 20%;}
.w33{width: 33.333333%;}

使用Flex弹性布局

.flexinline{
    display: -webkit-inline-flex;
    display: inline-flex;
}
.flexbox{
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
}
.flexbox-row{
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
}
.flexbox-col{
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
}
.flexitem{
    -moz-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    -webkit-box-flex: 1.0;
}
.flexwrap{
    flex-wrap:wrap;
    box-lines: multiple;
}
.flexitem-justify{
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-pack: center;
}
.flexitem-center{
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
}

媒体查询

html {font-size: 15px}
html {font-size: 4.7vw;/* rem(root element)配合vw(viewport width)  */}
@media only screen and (min-width:320PX) and (max-width:359PX) {
    html {
        font-size: 15px
    }
}
@media only screen and (min-width:360PX) and (max-width:374PX) {
    html {
        font-size: 16.875px
    }
}
@media only screen and (min-width:375PX) and (max-width:389PX) {
    html {
        font-size: 17.5781px
    }
}
@media only screen and (min-width:390PX) and (max-width:400PX) {
    html {
        font-size: 18.75px
    }
}
@media only screen and (min-width:401PX) and (max-width:414PX) {
    html {
        font-size: 19.4063px
    }
}
@media only screen and (min-width:415PX) and (max-width:640PX) {
    html {
        font-size:22.5px
    }
}
@media screen and (min-width:641PX) {
    html {
        font-size: 30px
    }
}

使用REM控制布局单位

(function(doc,win){
    var docEl = doc.documentElement;
    var resize = "orientationchange" in window ? "orientationchange" : "resize";
    var calculate = function(){
        var clientWidth = docEl.clientWidth;
        if(!clientWidth){
            return;
        }
        docEl.style.fontSize = (clientWidth > 640 ? 640 :clientWidth)/320*20 + "px";
    };
    //不同浏览器对resize事件处理机制不同,使用定时器延迟处理resize回调函数以降低重复响应。
    var timer = null;
    var delay = function(){
        win.clearTimeout(timer);
        timer = win.setTimeout(calculate, 100);
    };
    //移动端无需考虑事件注册函数兼容性
    if(!doc.addEventListener){
        return;
    }
    //添加resize事件注册函数
    win.addEventListener(resize, delay, false);
    //DOMContentLoaded事件只在DOM文档树加载完毕后触发,因此延迟处理。
    doc.addEventListener("DOMContentLoaded", calculate, false);
})(document, window);
(function(doc, win, designWidth){
    var html = doc.documentElement;
    var resize = "orientationchange" in window ? "orientationchange" : "resize";
    var calculate = function(){
        var clientWidth = html.clientWidth;
        if(!clientWidth){
            return;
        }
        //若设备宽度超过设计稿宽度则按统一值计算
        html.style.fontSize = (clientWidth >= designWidth ? 100 : clientWidth/designWidth*100) + "px";
    };
    //不同浏览器对resize事件处理机制不同,使用定时器延迟处理resize回调函数以降低重复响应。
    var timer = null;
    var delay = function(){
        win.clearTimeout(timer);
        timer = win.setTimeout(calculate, 100);
    };
    //移动端无需考虑事件注册函数兼容性
    if(!doc.addEventListener){
        return;
    }
    //添加resize事件注册函数
    win.addEventListener(resize, delay, false);
    //DOMContentLoaded事件只在DOM文档树加载完毕后触发,因此延迟处理。
    doc.addEventListener("DOMContentLoaded", calculate, false);
})(document, window, 750);

背景图片缩放自适应

body{
    background-color: #0b0f34;
    background-image:url("/assets/stats/img/bg.png");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.main{
    padding:3rem 1.5rem 1.5rem 1.5rem;
    background-image:url("/assets/stats/img/wrapper-bg.png");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}
  • background-size:cover;设置背景基于容器大小伸缩
  • background-attachment:fixed;设置当内容高度大于背景图片高度时背景图片位置先对于viewport固定

文本字体缩放自适应

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容

  • 选择qi:是表达式 标签选择器 类选择器 属性选择器 继承属性: color,font,text-align,li...
    love2013阅读 2,303评论 0 11
  • CSS参考手册 一、初识CSS3 1.1 CSS是什么 CSS3在CSS2.1的基础上增加了很多强大的新功能。目前...
    没汁帅阅读 3,556评论 1 13
  • 移动端布局方案 rem 示例 [ 方法1 ] 在谷歌浏览器中,打开任意模仿IPHONE的设备尺寸,查看body的宽...
    squidbrother阅读 984评论 0 0
  • 阿里flexible布局 - 版本1.x 该布局于 2017年8月9日被2.0版本取代 实现原理 假设(UI稿75...
    zhongmeizhi阅读 765评论 0 1
  • 1、属性选择器:id选择器 # 通过id 来选择类名选择器 . 通过类名来选择属性选择器 ...
    Yuann阅读 1,617评论 0 7