webApp开发(二)-新建空白页面

来源:互联网 发布:软件项目风险控制ppt 编辑:程序博客网 时间:2024/05/21 07:02
    <!DOCTYPE html>  
    <html>  
    <head>  
        <meta charset="UTF-8">  
        <!-- 设置宽度为设备的宽度,默认不缩放,不允许用户缩放(即禁止缩放),在网页加载时隐藏地址栏与导航栏(ios7.1新增) -->  
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />  
        <!-- 是否启动webapp功能,会删除默认的苹果工具栏和菜单栏。 -->  
        <meta name="apple-mobile-web-app-capable" content="yes" />  
        <!-- 当启动webapp功能时,显示手机信号、时间、电池的顶部导航栏的颜色。默认值为default(白色),可以定为black(黑色)和black-translucent(灰色半透明)。这个主要是根据实际的页面设计的主体色为搭配来进行设置。 -->  
        <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">  
      
        <!-- apple-touch-icon -->  
        <link rel="apple-touch-icon" href="touch-icon-iphone.png">  
        <link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png">  
        <link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png">  
        <link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad-retina.png">  
      
        <!-- apple-touch-startup-image -->  
        <link rel="apple-touch-startup-image" href="/startup.png">  
        <!-- iPhone -->  
        <link href="apple-touch-startup-image-320x460.png" media="(device-width: 320px)" rel="apple-touch-startup-image" />  
      
        <!-- iPhone Retina -->  
        <link href="apple-touch-startup-image-640x920.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />  
      
        <!-- iPhone 5 -->  
        <link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="apple-touch-startup-image-640x1096.png">  
      
        <!-- iPad portrait -->  
        <link href="apple-touch-startup-image-768x1004.png" media="(device-width: 768px) and (orientation: portrait)" rel="apple-touch-startup-image" />  
      
        <!-- Pad landscape -->  
        <link href="apple-touch-startup-image-748x1024.png" media="(device-width: 768px) and (orientation: landscape)" rel="apple-touch-startup-image" />  
      
        <!-- iPad Retina portrait -->  
        <link href="apple-touch-startup-image-1536x2008.png" media="(device-width: 1536px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />  
      
        <!-- iPad Retina landscape -->  
        <link href="apple-touch-startup-image-1496x2048.png"media="(device-width: 1536px)  and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)"rel="apple-touch-startup-image" />  
        <title>Document</title>  
    </head>  
    <body>  
      
    </body>  
    </html> 
0 0
原创粉丝点击