zoukankan      html  css  js  c++  java
  • 移动端开发需要加的meta

    移动端开发需要加的meta和常用的css3媒体查询样式,移动开发中头部要加的一些常用meta。

    <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maxinum-scale=1,width=device-width">
    
    <meta content="telephone=no" name="format-detection">
    
    <meta name="applicable-device" content="mobile">
    
    <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">
    

      css 适应不同手机

    iphone 4和4s

    @media only screen
    
    and (min-device-320px)
    
    and (max-device-480px)
    
    and (-webkit-min-device-pixel-ratio:2){}

    iphone 5 and 5s
    @media only screen
    
    and (min-device-320px)
    
    and (max-device-568px)
    
    and (-webkit-min-device-pixel-ratio:2){}

    Android width360
    @media only screen
    
    and (min-device-360px)
    
    and (max-device-640px){
    
    html {font-size:112.5px;}
    
    }

    android width411
    @media only screen
    
    and (min-device-400px)
    
    {
    
    html {font-size:128.4375px;}
    
    }
    iphone  6+
    @media only screen
    
    and (min-device-375px)
    
    and (max-device-667px)
    
    and (-webkit-min-device-pixel-ratio:2){
    
    html {font-size:117.1875px;}
    
    }
    iphone  6
    @media only screen
    
    and (min-device-375px)
    
    and (max-device-667px)
    
    and (-webkit-min-device-pixel-ratio:2){
    
    html {font-size:129.375px;}
    
    }
    重置样式
    *{ -webkit-tap-highlight-color:transparent;outline:0;margin:0;padding:0;vertical-align:baseline;fone-size:inherit;line-height:inherit;}
    
    body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,li,pre,form,field,legend,button,input,textarea,th,td{margin:0,padding:0,vertical-align:baseline;}
    
    i,em{font-style:normal;}
    
    ol,ul{list-style:none;}
    
    h1,h2,h3,h4,h5,h6,strong,b{font-weight:normal;}
    
    input,select,button,h1,h2,h3,h4,h5,h6{font-size:inherit;font-family:inherit;}
    
    table{border-collapse:collapse;border-spacing:0;}
    
    a{text-decoration:none;color:#666;}
    
    body{margin:0 auto;min-320px;max-640px;height:100%;font-family:Microsoft Yahei,Helvetica;line-height:1.5;color:#666;-webkit-text-size-adjust:100%!importtant;text-size-adjust:100% !important;}
    
    textarea{resize:none;}
    
    input[type="text"],input[type="tel"],input[type="button"],textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:nione;}
    
     
    
    body{font-size:0.14rem;-webkit-overflow-scrolling:touch;}
    
    html{box-sizing:border-box;font-size:100px;height:100%;-webkit-text-size-adjust:none}
    
    *,*:before,*:after{content:"020",display:block;height:0;overflow:hidden;clear:both}
    

      

  • 相关阅读:
    webim-界面细节调整
    使用PHP得到所有的HTTP请求头_还有应答头
    Bootstrap学习的点点滴滴
    asterisk中eyebeam与移动的IMS帐号对接
    总结Ajax跨域调用问题
    Spring【基础】-注解-转载
    Spring-【高阶】注解-转载
    让你的IDEA倍爽
    IDEA的git密码修改
    Idea设置签名
  • 原文地址:https://www.cnblogs.com/qq735675958/p/7443920.html
Copyright © 2011-2022 走看看