美文网首页
移动端资源整理H5

移动端资源整理H5

作者: 名字长不重复 | 来源:发表于2017-07-05 16:07 被阅读0次

    移动端资源的整理

    meta标签

    • H5页面窗口自动调整到设备宽度,并禁止用户缩放页面
    <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
    
    
    • 忽略将页面中的数字识别为电话号码
    <meta name="format-detection" content="telephone=no" />
    
    • 忽略Android平台中对邮箱地址的识别
    <meta name="format-detection" content="email=no" />
    
    
    • 当网站添加到主屏幕快速启动方式,可隐藏地址栏,仅针对ios的safari
    <meta name="apple-mobile-web-app-capable" content="yes" />
    
    
    • 将网站添加到主屏幕快速启动方式,仅针对ios的safari顶端状态条的样式
    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <!-- 可选default、black、black-translucent -->
    
    
    • viewport模板——通用(自己总结的一般写移动端时候用到的公共部分头部)
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport">
    <meta content="yes" name="apple-mobile-web-app-capable">
    <meta content="black" name="apple-mobile-web-app-status-bar-style">
    <meta content="telephone=no" name="format-detection">
    <meta content="email=no" name="format-detection">
    <title>标题</title>
    <link rel="stylesheet" href="index.css">
    </head>
    
    <body>
    这里开始内容
    </body>
    
    </html>
    

    字体的选择

    定义字体:一般中文字体利用默认的,英文字体利用Helvetica

    body{font-family:Helvetica;}
    

    详情参考 《移动端使用字体的思考

    字体单位的选择px或者rem

    • 对于只需要适配少部分手机设备,且分辨率对页面影响不大的,使用px即可

    • 对于需要适配各种移动设备,使用rem,例如只需要适配iPhone和iPad等分辨率差别比较挺大的设备rem配置参考:

    html{font-size:10px}
    @media screen and (min-width:321px) and (max-width:375px){html{font-size:11px}}
    @media screen and (min-width:376px) and (max-width:414px){html{font-size:12px}}
    @media screen and (min-width:415px) and (max-width:639px){html{font-size:15px}}
    @media screen and (min-width:640px) and (max-width:719px){html{font-size:20px}}
    @media screen and (min-width:720px) and (max-width:749px){html{font-size:22.5px}}
    @media screen and (min-width:750px) and (max-width:799px){html{font-size:23.5px}}
    @media screen and (min-width:800px){html{font-size:25px}}
    
    

    页面显示屏Retina

    Retina:一种具备超高像素密度的液晶屏,同样大小的屏幕上显示的像素点由1个变为多个,如在同样带下的屏幕上,苹果设备的retina显示屏中,像素点1个变为4个

    • [x] 在高清显示屏中的位图被放大,图片会变得模糊,因此移动端的视觉稿通常会设计为传统PC的2倍;解决方案如下:
    • 设计稿切出来的图片长宽保证为偶数,并使用backgroud-size把图片缩小为原来的1/2
    /*例如图片宽高为:200px*200px,那么写法如下*/
    .css{width:100px;height:100px;background-size:100px 100px;}
    /*其它元素的取值为原来的1/2,例如视觉稿40px的字体,使用样式的写法为20px*/
    .css{font-size:20px}
    /*利用devicePixelRatio来判断图片的倍数*/
    
    .css{/* 普通显示屏(设备像素比例小于等于1.3)使用1倍的图 */ 
        background-image: url(img_1x.png);
    }
    @media only screen and (-webkit-min-device-pixel-ratio:1.5){
    .css{/* 高清显示屏(设备像素比例大于等于1.5)使用2倍图  */
        background-image: url(img_2x.png);
      }
    }
    
    /*image-set,它是Webkit的私有属性,也是Css4的一个属性*/
    .css{
        background: url(../img/bank_ico.png) no-repeat;/* 不支持image-set的显示屏 */ 
        background: -webkit-image-set(
                    url(../img/bank_ico.png) 1x,/* 支持image-set的浏览器的[普通屏幕]下 */
                    url(../img/bank_ico_retina.png) 2x);/* 支持image-set的浏览器的[Retina屏幕] */
                    
    }
    

    参考《高清显示屏原理及设计方案

    移动端存在的特殊样式

    部分android系统中元素被点击时产生的边框怎么去掉

    a,button,input,textarea{
    -webkit-tap-highlight-color: rgba(0,0,0,0;)
    -webkit-user-modify:read-write-plaintext-only;
    }
    //-webkit-user-modify有个副作用,就是输入法不再能够输入多个字符,另外,有些机型去除不了,如小米2;其他的方法利用div代替掉所有的标签
    

    winphone系统a、input标签被点击时产生的半透明灰色背景去掉

    <meta name="msapplication-tap-highlight" content="no">
    

    webkit表单元素的默认外观重置

    input{-webkit-appearance:none;}
    

    webkit表单输入框placeholder的颜色值改变

    input::-webkit-input-placeholder{color:#AAAAAA;}
    input:focus::-webkit-input-placeholder{color:#EEEEEE;}
    

    IE10(winphone8)表单元素默认外观重置

    /*下拉框按钮重置*/
    select::-ms-expand {
    display: none;
    }
    /*单选和多选按钮重置*/
    input[type=radio]::-ms-check,
    input[type=checkbox]::-ms-check
    {
    display: none;
    }
    /*禁用PC端表单输入框默认清除按钮*/
    input[type=text]::-ms-clear,
    input[type=tel]::-ms-clear,
    input[type=number]::-ms-clear
    {
    display: none;
    }
    

    禁止ios 长按时不触发系统的菜单,禁止ios&android长按时下载图片

    .css{-webkit-touch-callout: none}
    

    禁止ios和android用户选中文字

    .css{-webkit-user-select:none}
    
    

    去除ios上的input输入框的首字母大写的问题

    <input autocapitalize="off" autocorrect="off" />
    

    android 上去掉语音输入按钮

    input::-webkit-input-speech-button {display: none}
    

    属性border-radius在移动端的支持与兼容性:

    • Android 2.3 自带浏览器不支持就是border-radius:50%是不支持的
    • Android 及 Safari 低版本 img 圆角问题: 当 img 元素有border 时设置border-radius 会导致圆角变形,需要在img 外面嵌套一个元素并设置border 和border-radius;
    • Android 4.2.x 系统自带浏览器中,同时设置border-radius和背景色的时候,背景色会溢出到圆角以外部分,需要是使用background-clip:padding-box;来修复,但是如果border-color为半透明时,背景直角部分依然会露出来
    • 三星 Galaxy S4 中自带浏览器不支持;解决办法不要利用缩写直接扩写
    .foo {
        width: 100px;
        height: 100px;
        border: 5px solid blue;
        border-top-left-radius: 999px; /* 左上角 */
        border-top-right-radius: 999px; /* 右上角 */
        border-bottom-right-radius: 999px; /* 右下角 */
        border-bottom-left-radius: 999px; /* 左下角 */
        border-radius: 999px;
        background-color: #ccc;
        background-clip: padding-box;
    }
    

    打电话发短信写邮件实现

    //打电话
    <a href="tel:0755-10086">打电话给:0755-10086</a>
    //发短信(win无效)
    <a href="sms:10086">发短信给: 10086</a>
    //发邮件
    <a href="mailto:peun@foxmail.com">peun@foxmail.com</a>
    

    移动端的事件(区分webkit 和 winphone)

    以下支持webkit

    • [x] 事件
    • touchstart——当手指触碰屏幕时候发生。不管当前有多少只手指
    • touchmove——当手指在屏幕上滑动时连续触发。通常我们再滑屏页面,会调用event的preventDefault()可以阻止默认情况的发生:阻止页面滚动
    • touchend——当手指离开屏幕时触发
    • touchcancel——系统停止跟踪触摸时候会触发。例如在触摸过程中突然页面alert()一个提示框,此时会触发该事件,这个事件比较少用
    • [x] TouchEvent
    • touches:屏幕上所有手指的信息
    • targetTouches:手指在目标区域的手指信息
    • changedTouches:最近一次触发该事件的手指信息
    • touchend时,touches与targetTouches信息会被删除,changedTouches保存的最后一次的信息,最好用于计算手指信息
    • [x] 参数信息(changedTouches[0])
    • clientX、clientY在显示区的坐标
    • target:当前元素

    以下支持winphone 8

    • MSPointerDown——当手指触碰屏幕时候发生。不管当前有多少只手指
    • MSPointerMove——当手指在屏幕上滑动时连续触发。通常我们再滑屏页面,会调用css的html{-ms-touch-action: none;}可以阻止默认情况的发生:阻止页面滚动
    • MSPointerUp——当手指离开屏幕时触发

    点击事件:移动端click屏幕产生200-300 ms的延迟响应;

    • fastclick可以解决在手机上点击事件的300ms延迟
    • zepto的touch模块,tap事件也是为了解决在click的延迟问题
    • 解决300ms延迟的问题,也可以通过绑定ontouchstart事件,加快对事件的响应

    触摸事件的响应顺序

    1. ontouchstart
    2. ontouchmove
    3. ontouchend
    4. onclick

    屏幕旋转的事件和样式

    • [x] 事件window.orientation,取值:正负90表示横屏模式、0和180表现为竖屏模式;
    //判断横竖屏
    window.onorientationchange = function(){
        switch(window.orientation){
        case -90:
        case 90:
        alert("横屏:" + window.orientation);
        case 0:
        case 180:
        alert("竖屏:" + window.orientation);
        break;
        }
    }
    
    //依据横竖屏来判断样式
    //竖屏时使用的样式
    @media all and (orientation:portrait) {
    .css{}
    }
    
    //横屏时使用的样式
    @media all and (orientation:landscape) {
    .css{}
    }
    

    摇一摇功能HTML5 deviceMotion:封装了运动传感器数据的事件,可以获取手机运动状态下的运动加速度等数据。

    
    

    audio元素和video元素在ios和andriod中无法自动播放

    //应对方案:触屏即播
    $('html').one('touchstart',function(){
        audio.play()
    })
    

    手机拍照和上传图片<input type=”file”>的accept 属性

    手机端的硬件加速

    在手机和PC端都可以利用css开启硬件加速(像Chrome, FireFox, Safari, IE9+和最新版本的Opera都支持硬件加速,当它们检测到页面中某个DOM元素应用了某些CSS规则时就会开启,最显著的特征的元素的3D变换。)

    .css {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    

    Chrome and Safari中,当我们使用CSS transforms 或者 animations时可能会有页面闪烁的效果,下面的代码可以修复此情况

    .cube {
       -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
       -ms-backface-visibility: hidden;
       backface-visibility: hidden;
     
       -webkit-perspective: 1000;
       -moz-perspective: 1000;
       -ms-perspective: 1000;
       perspective: 1000;
       /* Other transform properties here */
    }
    /*webkit内核有另一种方法*/
    .cube {
       -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
       -ms-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
      /* 这个方法还能同时开启硬件加速 */
    }
    

    利用那个样式解决winPhone的默认事件

    html{-ms-touch-action: none;}/* 禁止winphone默认触摸事件 */
    

    移动端中利用position:fixed的问题

    • [x] 利用position:fixed;在移动端会有键盘弹出的效果,这样会影响fixed的位置

    解决方案利用插件iscroll的插件来解决ios4不支持fixed的属性

    相关文章

      网友评论

          本文标题:移动端资源整理H5

          本文链接:https://www.haomeiwen.com/subject/fjyqhxtx.html