1. 程式人生 > >WebApp開發Meta標籤解析

WebApp開發Meta標籤解析

WebApp全屏模式:

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

注意:viewport 後面加上 minimal-ui 在safri 體現效果

<meta name="apple-mobile-web-app-capable" content="yes" />

刪除預設的蘋果工具欄和選單欄

<meta name="apple-mobile-web-app-capable"
content="yes" />

設定web app的放置主螢幕上icon檔案路徑

<link rel="apple-touch-icon-precomposed" href="http://spion.blog.163.com/blog/iphone_milanoo.png" />

將不識別郵箱告訴裝置忽略將頁面中的數字識別為電話號碼

<meta content="telephone=no" name="format-detection" />
<meta content="email=no" name="format-detection" />

把網頁存為書籤時,在手機HOME介面建立應用程式樣式的圖示

<link rel="apple-touch-icon" href="/static/images/identity/HTML5_Badge_64.png" />
<link rel="apple-touch-icon-precomposed" href="/static/images/identity/HTML5_Badge_64.png" />

隱藏狀態列/設定狀態列顏色:

<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"
/>

safri 新增到主屏介面的顯示標題:

<meta name="apple-mobile-web-app-title" content="應用標題">

忽略自動識別數字為電話號碼:

<meta content="telephone=no" name="format-detection" />

忽略自動識別郵箱賬號:

<meta content="email=no" name="format-detection" />

常用瀏覽器全屏設定:

UC強制豎屏
<meta name="screen-orientation" content="portrait">
UC強制全屏
<meta name="full-screen" content="yes">
UC應用模式
<meta name="browsermode" content="application">
QQ強制豎屏
<meta name="x5-orientation" content="portrait">
QQ強制全屏
<meta name="x5-fullscreen" content="true">
QQ應用模式
<meta name="x5-page-mode" content="app">

檢視更多文章,請點選進入個人部落格