1. 程式人生 > >蘋果手機的meta設定

蘋果手機的meta設定

meta的作用就是刪除預設的蘋果工具欄和選單欄。content有兩個值”yes”和”no,當我們需要顯示工具欄和選單欄時,這個行meta就不用加了,預設就是顯示。

<meta name=
”apple-mobile-web-app-status-bar-style” content=black” /> 預設值為default(白色),可以定為black(黑色)和black-translucent(灰色半透明)。注意: 若值為“black-translucent”將會佔據頁面px位置,浮在頁面上方(會覆蓋頁面20px高度–iphone4itouch4Retina螢幕為40px)。在iOS
中有兩個meta值,apple-mobile-web-app-capableapple-mobile-web-app-status-bar-style,這兩個會讓網頁內容以應用程式風格顯示,並使狀態列透明。
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">


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

說明: 這個link就是設定web app的放置主螢幕上icon檔案路徑。圖片尺寸可以設定為57*57px)或者Retina可以定為114*114px),ipad尺寸為72*72px

<meta content="telephone=no" name="format-detection" />
<meta content="email=no" name="format-detection" />//
將不識別郵箱告訴裝置忽略將頁面中的數字識別為電話號碼 

iOS
rel="apple-touch-icon",android rel="apple-touch-icon-precomposed"
。這樣就能在使用者把網頁存為書籤時,在手機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" />