移动端设计研发安卓

移动端适配以及百分比布局与rem比较

2017-06-26  本文已影响3687人  itclanCoder
doudou.gif
点击如下链接即可收听音频哦,旧号itclan已暂停使用,可移步新号itclanCoder
移动端适配以及百分比布局与rem比较

前言

对于熟悉pc端的小伙伴来说,对于静态页面的布局,一般都是没有什么问题的,为了保持各浏览器显示的一致性,无论是选择优雅降级还是渐进增强,我们有时不得不做兼容性处理,比如css中的hack技术,css3中新增属性添加一些浏览器前缀等,但在移动端对h5新增的属性都比较友好,无需考虑pc端诸多繁琐的兼容性问题,但这并不意味不存在兼容性问题,因为移动设备很多(ios,android等),各设备分辨率不一致,那么同样为保持在各个设备上显示一致性,我们必须得进行适配处理,对于接触得少移动端的童鞋来说,往往从设计师那拿到psd文档,如果依然按照pc端的处理方式,绝对是走不通的,有时却不知如何下手,往往处理得不是很好,一听到什么rem适配,100%布局,对于熟悉使用固定像素值的方式的童鞋来说,刚开始内心是焦虑的,对于如何选择什么样的方式很好的进行页面布局实现内容结构良好的的展现,非常苦恼,而在页面交互上,元素触发事件等与pc端也有很大的不同,对于移动端的学习,我也一直在学习当中,今天给大家分享一下自己的学习心得,把自己曾学过的东西进行总结梳理了一下,本篇并不涉及到什么高大上的内容,初学者笔记学习心得,如果您是老司机,可以选择上车也可以下车,欢迎路过的老师多提意见和指正.

pc端网站与移动端(手机)网站区别

jd.gif
PC端:屏幕尺寸大,显示内容多,结构复杂,缩小浏览器窗口,页面内容结构并不会发生改变,也并不是响应式
移动端(手机网站):屏幕尺寸小,显示的内容有限,结构清晰,简洁,设备类型(ipad,iphone5,6,安卓等)繁多,页面内容结构自适应变化,随着浏览器窗口缩小而缩小,放大而放大,等比例缩放
相同点:利用html+css(包括css3)+javascript,pc端性能优化同样适用于移动端策略
不同点:

为什么要做适配

怎么做适配,有哪些适配方案

用100%布局适配

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
    <title>固定高度,宽度自适应,100%比做适配</title>
    <style type="text/css">
             *{
                padding:0;
                margin:0;
            }
            body{
                font-size:16px;
                overflow:hidden;
                -webkit-box-sizing:border-box;
                box-sizing:border-box; 
            }
            /*left start*/
            .left{
                width:40px;        /*两边固定宽度,中间自适应*/
                height:40px;       /*高度可以不加,由内容填充*/
                position:absolute;
                left:0;
                top:0;
                background:red;
                text-align:center;
                line-height:40px;
             }
             /*left end*/
             /*center start*/
             .center{
                width:100%;        /*宽度不固定*/
                background:orange;
                height:40px; 
                margin-left:40px;
             }
             .center input{
                width:100%;
                height:40px;
                outline:none;
             }
             /*center end*/
             /*right start*/
             .right{
                width:40px;       /*两边固定宽度,中间自适应*/
                height:40px;      /*高度可以不可,由内容填充*/
                text-align:center;
                line-height:40px;
                position:absolute;
                right:0;
                top:0;
                background:green;
             }
               /*right end*/
               /*banner adv start*/
             .banner{
                width:100%;
                height:200px;
                background:pink;
                text-align:center;
                line-height:200px;
             }
             /*banner adv end*/
             /*list start*/
             .list{
                overflow:hidden;
             }   
             .list div{
                 width:20%;
                 height:90px;
                 float:left;
                 text-align:center;
                 line-height:90px;
             }
             .list div:nth-of-type(1){
                background:orange;
             }
             .list div:nth-of-type(2){
                background:#80B3FF;
             }
             .list div:nth-of-type(3){
                background:#1BA260;
             }
             .list div:nth-of-type(4){
                background:#F2A196;
             }
             .list div:nth-of-type(5){
                background:#FFCE42;
             }
             .listTwo{
                margin:15px 0 0 0;
             }
               /*list end*/
               /*con start*/
             .con{
                width:100%;
                height:200px;
                overflow:hidden;     /*子元素使用来浮动,父元素记得清除浮动*/
                text-align:center;
                line-height:200px;
             }
             .left-80{
                width:80%;
                height:100%;  /*想要一个元素在页面中显示必须得给元素高度,继承父元素*/
                float:left;
                background:#B0E24A;
             }
             .right-20{
                width:20%;
                height:100%; /*高度100%,继承父元素的高度*/
                float:right;
                background:#6C6863;
             }
             /*con end*/

    </style>
</head>
<body>
      <!-- header start -->
      <header>
            <div class="left">左边</div>
            <div class="center">
                <form>
                     <input type="search" name="">
                </form>
            </div>
            <div class="right">右边</div>
      </header>
      <!-- header end -->
      <!-- banner adv start -->
      <div class="banner">adv</div>
      <!-- banner adv end -->
      <!-- 列表list start -->
      <div class="list">
            <div>1</div> 
            <div>2</div>
            <div>3</div>
            <div>4</div>
            <div>5</div>  
      </div>
      <div class="list listTwo">
            <div>6</div> 
            <div>7</div>
            <div>8</div>
            <div>9</div>
            <div>10</div>  
      </div>
       <!-- 列表list end -->
      <!-- con内容开始-->
      <div class="con">
            <div class="left-80">左边80%</div>
            <div class="right-20">右边20%</div>
      </div>
      <!-- con内容结束-->
</body>
</html>

如下gif图所示


100%布局.gif

Flex布局适配,最为强大

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
    <title>display:box实现页面的自适应</title>
    <style type="text/css">
            *{
                padding:0;
                margin:0;
             }
             body{
                font-family:"微软雅黑";
                font-size:16px;
             }
             .parent{
                display:-webkit-box;     /*声明弹性盒模型*/
                box-orient:horizontal;
                display:box; 
             }
             .left,.right{
                width:40px;
                height:40px;
                text-align:center;
                line-height:40px;
             }
             .left{
                background:#abcdef;
             }
             .right{
                background:#DD4F43;
             }
             .center{
                -webkit-box-flex:1; /*一定要注意加上浏览器前缀,否则就会失效*/
                box-flex:1;
             }
             .center input{
                width:100%;
                height:40px;
                outline:none;
             }
             .banner-adv{
                width:100%;
                height:200px;
                display:-webkit-box;
                display:box;
                background:#0D6CB0;
             }
             .list{
                width:100%;
                height:90px;
                display:-webkit-box;
                box-orient:horizontal;
                display:box;
             }
             .list div{
                 -webkit-box-flex:1;
                 box-flex:1;
                 text-align:center;
                 line-height:90px;
             }
             .list div:nth-of-type(1){
                 background:#DE5246;
             }
             .list div:nth-of-type(2){
                 background:#19A25F;
             }
             .list div:nth-of-type(3){
                 background:#FF8080;
             }
             .list div:nth-of-type(4){
                 background:#F4CD0B;
             }
             .list div:nth-of-type(5){
                 background:#9EDA45;
             }
             .list-Two{
                margin:15px 0 0 0;
             }
             .list-Two div:nth-of-type(1){
                background:#B847FF;
             }
             .list-Two div:nth-of-type(2){
                background:#79B900;
             }
             .list-Two div:nth-of-type(3){
                background:#FF2424;
             }
             .list-Two div:nth-of-type(4){
                background:#D2E4F0;
             }
             .list-Two div:nth-of-type(5){
                background:#4CDF2B;
             }
             .con{
                height:200px;
                display:-webkit-box;  /*声明弹性盒模型*/
                display:box;
             }
             .con div:nth-of-type(1){
                -webkit-box-flex:8;   /*根据父元素分成8等分,占80%*/
                box-flex:8;
                background:#80B3FF;
             }
             .con div:nth-of-type(2){
                -webkit-box-flex:2;   /*根据父元素分成2等分,占20%*/
                box-flex:2;
                background:#CD8B37;
             }
    </style>
</head>
<body>
        <header class="parent">
              <div class="left">左边</div>
              <div class="center">
                    <form>
                         <input type="search" name="">
                    </form>
              </div>
              <div class="right">右边</div>
        </header>
        <div class="banner-adv"></div>
        <section class="list">
               <div>1</div>
               <div>2</div>
               <div>3</div>
               <div>4</div>
               <div>5</div>
        </section>
        <section class="list list-Two">
               <div>6</div>
               <div>7</div>
               <div>8</div>
               <div>9</div>
               <div>9</div>
        </section>
        <div class="con">
             <div></div>
             <div></div>
        </div>
</body>
</html>

实例效果图如下所示

display-box.gif
新版本的弹性盒模型实现页面自适应
html内容结构代码
<header class="parent">
              <div class="left">左边</div>
              <div class="center">
                    <form>
                         <input type="search" name="">
                    </form>
              </div>
              <div class="right">右边</div>
        </header>
        <div class="banner-adv"></div>
        <section class="list">
               <div>1</div>
               <div>2</div>
               <div>3</div>
               <div>4</div>
               <div>5</div>
        </section>
        <section class="list list-Two">
               <div>6</div>
               <div>7</div>
               <div>8</div>
               <div>9</div>
               <div>9</div>
        </section>
        <div class="con">
             <div></div>
             <div></div>
        </div>

css层叠样式代码

*{
    padding:0;
    margin:0;
}
body{
    font-family:"微软雅黑";
    font-size:16px;
}
.parent{
    display:-webkit-flex;     /*声明弹性盒模型*/
    display:flex; 
}
.left,.right{
    width:40px;
    height:40px;
    text-align:center;
    line-height:40px;
}
.left{
    background:#abcdef;
}
.right{
    background:#DD4F43;
}
.center{
    -webkit-flex:1; /*一定要注意加上浏览器前缀,否则就会失效*/
    flex:1;
}
.center input{
    width:100%;
    height:40px;
    outline:none;
}
.banner-adv{
    width:100%;
    height:200px;
    display:-webkit-box;
    display:box;
    background:#0D6CB0;
}
.list{
    width:100%;
    height:90px;
    display:-webkit-flex;
    display:flex;
}
.list div{
    -webkit-flex:1;
    flex:1;
    text-align:center;
    line-height:90px;
}
.list div:nth-of-type(1){
    background:#DE5246;
}
.list div:nth-of-type(2){
    background:#19A25F;
}
.list div:nth-of-type(3){
    background:#FF8080;
}
.list div:nth-of-type(4){
    background:#F4CD0B;
}
.list div:nth-of-type(5){
    background:#9EDA45;
}
.list-Two{
    margin:15px 0 0 0;
}
.list-Two div:nth-of-type(1){
    background:#B847FF;
}
.list-Two div:nth-of-type(2){
    background:#79B900;
}
.list-Two div:nth-of-type(3){
    background:#FF2424;
}
.list-Two div:nth-of-type(4){
    background:#D2E4F0;
}
.list-Two div:nth-of-type(5){
    background:#4CDF2B;
}
.con{
    height:200px;
    display:-webkit-flex;  /*声明弹性盒模型*/
    display:flex;
}
.con div:nth-of-type(1){
    -webkit-flex:8;   /*根据父元素分成8等分,占80%*/
    flex:8;
    background:#80B3FF;
}
.con div:nth-of-type(2){
    -webkit-flex:2;   /*根据父元素分成2等分,占20%*/
    flex:2;
    background:#CD8B37;
}

实现的效果图同上所示

固定宽度,设定一个标准值(比如以640为准),改变缩放比例(动态的创建meta标签,改变缩放比例)

<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">

viewport:视口宽度,设备的屏幕上能用来显示我们的网页的那一块区域()浏览器上(也可能是一个app中的webview)用来显示网页的那部分区域)

content:描述视口内容,width=device-width,网页内容宽度等于设备的宽度

initial-scale:()初始缩放比例),能够起到和width=device-width相同的效果(把理想的视窗设置为设备宽度),两个配合使用能够很好的解决移动端各设备的适配问题

maximum-scale:最大缩放比例

minimum-scale最小缩放比例

user-scaleable:如果值是0或者no,表示禁止用户手指缩放
html内容结构

 <div>
      ![](img/06chugui.jpg)
      ![](img/07shoubiao.jpg)
      ![](img/08zhoumojiadain.jpg)
      ![](img/09junzi.jpg)
 </div>

css层叠样式

*{
    padding:0;
    margin:0;
}
div{
    width:640px;
}
img{
    width:100%;
    display:block;
}

js代码

 /*
 * 固定页面的尺寸,做一个640的页面为标准,然后进行等比例缩放,整个页面会跟着宽度等比例缩放
* @function scaleFun 等比例缩放函数
* @Object {Number} screenWidth:获取window屏幕的宽度
* @number fixedWidth 设置页面固定宽度
* @number {scale} 缩放比例,屏幕(设备)的宽度/固定的宽度
* @Object {createMeta} 动态的创建meat标签元素
* @Object {metaAttr} 定义一个对象,设置添加属性
* @for..in循环,将metaAttr的属性添加到createMeta中去
* @将meta标签添加到head头部中去
*/
 window.onload = function(){
    // 等比例缩放函数
   function scaleFun(){
     var screenWith = window.screen.width; // 获取window屏幕的宽度
     var fixedWidth = 640;    // 固定宽度
     var scale = screenWith/fixedWidth;  //缩放比例 window屏幕的宽度/固定宽度,这里的640看设计图纸给的像素,如果是750那么就写750,计算缩放比
     var createMeta = document.createElement("meta");// 动态的创建meta标签 
     // 设置属性
     var metaAttr = {
        name:"viewport",
        content:'width='+fixedWidth+', initial-scale='+scale+', maximum-scale='+scale+', user-scalable=no'
     }
    for(var key in metaAttr){
        createMeta[key] = metaAttr[key];
    }
    // 将createMeat添加到head头中
document.getElementsByTagName("head")[0].appendChild(createMeta);
/*
createMeta.setAttribute('name','viewport');                                             createMeta.setAttribute('content','width='+fixedWidth+', initial-scale='+scale+', maximum-scale='+scale+', user-scalable=no');
document.getElementsByTagName('head')[0].appendChild(createMeta);
*/
}
scaleFun();                 
}

实例效果演示如下

动态创建meat标签固定设备宽度等比例缩放.gif

rem做适配,在不同的设备上显示不同的效果

  <div class="spanText">欢迎关注微信itclan公众号</div>
  <div class="imgList">
        ![](img/06chugui.jpg)
        ![](img/07shoubiao.jpg)
        ![](img/08zhoumojiadain.jpg)
        ![](img/09junzi.jpg)
  </div>

css层叠样式
less预处理器

@rem:40rem   // 这里的rem怎么确定,根据你设计稿尺寸,根据有js中把网页(设计图)分成多少等分,动态的设置html根节点的大小,这里分成16等分,比如设计稿是640那么1rem就等于640/16=40px,如果设计稿是320,同理320/16=20
*{
    padding:0;
    margin:0;
}
body{
    overflow-x:hidden;
}
div.imgList{
    width:720/@rem;
}
img{
    display:block;
}
div.spanText{
    text-align:center;
    font-size:40/@rem;
}

编译出来的对应的css

*{
   padding:0;margin:0
}
body{
   overflow-x:hidden
 }
 div.imgList{
    width:18rem
 }
 img{
    width:18rem;
    display:block
 }
 div.spanText{
    text-align:center;
    font-size:1rem
}

js代码

window.onload = function(){
  var html = document.querySelector("html");  // 获取根节点html,用h5新增的选择器
  var timer = null;
  // 动态的获取设置根节点fontSize大小
  function changeRem(){ 
  var htmlWidth = html.getBoundingClientRect().width; // 获取网页的宽度,也就是屏幕的宽度
 html.style.fontSize = htmlWidth/16+"px";// 把网页(设计图)分成多少等分,动态的设置html根节点的大小,这里分成16等分
}
// 页面尺寸发生改变时,重新计算文字等大小,功能函数
function Time(){
    clearTimeout(timer);
    timer = setTimeout(function(){  
       changeRem();
    },10)
}
// 浏览器窗口发生变化时
   window.addEventListener('resize',function(){ 
   Time();
});
// 页面加载的时候,如果调用缓存的话,在次执行changeRem
 window.addEventLister('pageshow',function(e){
      if(e.persisted){  // 判断有没有缓存
         Time();
      }
  })
}

实例如下图所示

rem布局适配更改html根标签fontSize.gif
考拉工具的使用

以下是本篇提点概要

上一篇下一篇

猜你喜欢

热点阅读