实用的移动端web布局技巧

1.添加meta,使得网页在手机端能正常浏览

html 代码

<!-- 设置缩放 -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!-- 可隐藏地址栏,仅针对IOS的Safari(注:IOS7.0版本以后,safari上已看不到效果) -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- 仅针对IOS的Safari顶端状态条的样式(可选default/black/black-translucent ) -->
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- IOS中禁用将数字识别为电话号码/忽略Android平台中对邮箱地址的识别 -->
<meta name="format-detection" content="telephone=no, email=no" />
2.考虑是使用px,还是使用rem

对于只需要适配少部分手机设备,且分辨率对页面影响不大的,使用px即可;
如果需要高精度还原,适配各种手机,最好还是使用rem吧伙计们

1)使用px布局,宽度可使用百分比伸缩,高度使用固定像素
html 代码

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta name="apple-mobile-web-app-status-bar-style" content="black" />
        <meta name="format-detection" content="telephone=no, email=no" />
        <title></title>
        <style type="text/css">
            body{
                margin: 0;
                padding: 0;
                width: 320px;
                height: 568px;
                background:#fafafa;
                                border:1px solid #ccc;
            }
            .div1{
                width: 40%;
                height: 60px;
                background: #FF0000;
                float:left;
            }
            .div2{
                width: 60%;
                height: 60px;
                background: #FF7E00;
                float:left;
            }
        </style>
    </head>
    <body>
        <div class="div1">40%</div>
        <div class="div2">60%</div>
    </body>
</html>

2)使用rem的话,需要有一个辅助才能打出高额的伤害;从常用的两个辅助中选择一个;
辅助一,使用@media,根据屏幕大小自动调整
可以看看这篇文章详细介绍《CSS3的REM设置字体大小》

辅助二,使用js动态计算,这个简直好用的不得了,简直完美还原设计稿
html 代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1,minimum-scale=1, user-scalable=no">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <title>template</title>
    <script>
        //这个是小米官网的写法
        ! function(n) {
            var e = n.document,
                t = e.documentElement,
                i = 720,        //设计图尺寸
                d = i / 100,    //1rem = 100px
                o = "orientationchange" in n ? "orientationchange" : "resize",
                a = function() {
                    var n = t.clientWidth || 320;n > 720 && (n = 720);
                    t.style.fontSize = n / d + "px"
                };
            e.addEventListener && (n.addEventListener(o, a, !1), e.addEventListener("DOMContentLoaded", a, !1))
        }(window);
    </script>
    <style>
        *{box-sizing: border-box;}
        body{margin: 0;padding: 0;font-size: 16px;}
        .block{background: #1e90ff;width: 7.2rem;height: 2rem;}
        .block2{background: #ef4437;width: 3.6rem;height: 3.6rem;}
    </style>
    </head>
    
    
    <body>
        <div class="wrap">
            <div class="block">100% 7.2rem 设计图尺寸720,1rem=100px</div>
            <div class="block2">50% 3.6rem</div>
        </div>
    </body>
</html>

我自己常用的是adaptive.js

3.页面样式重置,这个在pc端还是移动端都会用到的

css 代码

/*css初始化*/
body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select{margin:0;padding:0} 
body{font-size:16px;font-family: "微软雅黑","microsoft yahei","microsoft sans serif";background: #ededed;color: #313131;} 
a,a:hover{text-decoration:none;color:inherit;} 
em,i{font-style:normal} 
li{list-style:none} 
img{border:0;vertical-align:middle} 
table{border-collapse:collapse;border-spacing:0} 
p{word-wrap:break-word} 
input,textarea{outline: none;font-family: "微软雅黑","microsoft yahei";}
*{box-sizing: border-box;} /*使用border-box盒模型使得计算位置、大小更方便*/
input[type='submit'],input[type='button'],input[type='reset']{-webkit-appearance: none;}/*消除iPhone上按钮显示怪异的情况*/
4.使用一屏布局

这个是我在查看一些UI框架发现的东西,整个页面分三块不超过一屏,header、contaner、footer。
内容都放在container中,超过就overflow-y:scroll;
这个其实挺好用的,使得页面结构清晰,布局容易
html 代码

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />
        <title></title>
        <style type="text/css">
        body,html{
            position: absolute;
            margin: 0;
            padding: 0;
            width: 320px;
            height: 100%;
        }
        *{box-sizing: border-box;}
        .g-page{
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            background: #FAFAFA;
        }
        .g-header{
            position: absolute;
            top: 0;
            width: 100%;
            height: 40px;
            line-height: 40px;
            background: #EF4437;
            color: #fff;
            text-align: center;
            z-index: 10;
        }
        .g-content{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            overflow-y: scroll;
            -webkit-overflow-scrolling: touch;
            background: #008000;
        }
        .g-footer{
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 40px;
            line-height: 40px;
            background: #666;
            color: #fff;
            text-align: center;
        }
        .g-header ~ .g-content{
            top: 40px;
        }
        .g-footer ~ .g-content{
            bottom: 40px;
        }
        .div1{
            height: 300px;
            background: #909090;
        }
        .div2{
            height: 300px;
            background: #82615f;
        }
        .div3{
            height: 300px;
            background: #1e90ff;
        }
        </style>
    </head>
    <body>
        <div class="g-page">

            <div class="g-header">头部</div>

            <div class="g-footer">页脚</div>

            <div class="g-content">
                <div class="div1">
                    内容
                </div>
                <div class="div2">
                    内容
                </div>
                <div class="div3">
                    内容
                </div>
            </div>

        </div>
    </body>
</html>
5.左边定宽,右边自适应的布局,我们会经常用到

html 代码

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />
        <style>
        body{margin: 0;padding: 0;}
        *{box-sizing: border-box;}
        .container-1{
            display: flex;
            height: 150px;
            margin-bottom: 40px;
        }
        .container-1 .left{
            width: 150px;
            height: 100%;
            background: #1E90FF;
        }
        .container-1 .right{
            flex: 1;
            height: 100%;
            background: #ef4437;
        }
        
        .container-2{
            position: relative;
            width: 100%;
            height: 150px;
            margin-bottom: 40px;
        }
        .container-2 .left{
            position: absolute;
            width: 150px;
            height: 100%;
            background: #EF2322;
            z-index: 2;
        }
        .container-2 .right{
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            padding-left: 150px;
            background: #1E90FF;
        }
        
        .container-3{
            overflow: hidden;
            height: 150px;
        }
        .container-3 .left{
            float: left;
            width: 150px;
            height: 100%;
            background: #1E90FF;
        }
        .container-3 .right{
            /*width: 100%;*/
            height: 100%;
            padding-left: 150px;
            background: #EF2322;
        }
        </style>
    </head>
    <body>
        <div style="width: 800px;margin: 0 auto;">
            <div class="container-1">
                <div class="left"></div>
                <div class="right"></div>
            </div>
            
            <div class="container-2">
                <div class="left"></div>
                <div class="right"></div>
            </div>
            
            <div class="container-3">
                <div class="left">2222222222222</div>
                <div class="right">1111111111111111111111111111111111111111111111<br>222222222222222</div>
            </div>
        </div>
        
    </body>
</html>
6.模块化、组件化开发,防止css命名重复,提高开发效率

这个对我这个英语词汇量不大的来说,简直是福音啊,
以前写css老是怕重名,写的各种奇怪命名,效率还低,
自从有了这个妈妈再也不用担心《如何写出优雅的css代码》

7.一像素的问题

在高分屏上写一个像素边框,那显示的活脱脱的就是两个像素,
设计师不满意,老板不满意;
我们可以用伪元素和css3来解决
css 代码

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

推荐阅读更多精彩内容