meta標籤

1.隱藏狀態欄/設置狀態欄顏色
<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="landscape/portrait">
<!-- 全屏顯示頁面 -->
<meta name="full-screen" content="yes">
<!-- 強制圖片顯示,即便是"text mode" -->
<meta name="imagemode" content="force">
<!-- 應用模式,默認將全屏,禁止長按菜單,禁止手勢,標準排版,強制圖片顯示。 -->
<meta name="browsermode" content="application">
<!-- 禁止夜間模式顯示 -->
<meta name="nightmode" content="disable">
<!-- 使用適屏模式顯示 -->
<meta name="layoutmode" content="fitscreen">
<!-- 當頁面有太多文字時禁止縮放 -->
<meta name="wap-font-scale" content="no">
六、QQ手機瀏覽器
<!-- 鎖定屏幕在特定方向 -->
<meta name="x5-orientation" content="landscape/portrait">
<!-- 全屏顯示 -->
<meta name="x5-fullscreen" content="true">
<!-- 頁面將以應用模式顯示 -->
<meta name="x5-page-mode" content="app">
七、iOS
<!-- Smart App Banner -->
<meta name="apple-itunes-app" content="app-id=APP_ID,affiliate-data=AFFILIATE_ID,app-argument=SOME_TEXT">

<!-- 禁止自動探測並格式化手機號碼 -->
<meta name="format-detection" content="telephone=no">

<!-- Add to Home Screen添加到主屏 -->
<!-- 是否啓用 WebApp 全屏模式 -->
<meta name="apple-mobile-web-app-capable" content="yes">

<!-- 設置狀態欄的背景顏色,只有在 「apple-mobile-web-app-capable」 content=」yes」 時生效 -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">

<!-- 添加到主屏後的標題 -->
<meta name="apple-mobile-web-app-title" content="App Title">
八、360瀏覽器
<!-- 選擇使用的瀏覽器解析內核 -->
<meta name="renderer" content="webkit|ie-comp|ie-stand">
九、Google Chrome
<!-- 優先使用最新的chrome版本 -->
<meta http-equiv="X-UA-Compatible" content="chrome=1" />

<!-- 禁止自動翻譯 -->
<meta name="google" value="notranslate">
十、百度禁止轉碼
<meta http-equiv="Cache-Control" content="no-siteapp" />
十一、Viewport(影響移動端佈局)
<meta name="viewport" content="width=device-width, initial-scale=1.0">
/*
    content 參數:
    width viewport 寬度(數值/device-width)
    height viewport 高度(數值/device-height)
    initial-scale 初始縮放比例
    maximum-scale 最大縮放比例
    minimum-scale 最小縮放比例
    user-scalable 是否容許用戶縮放(yes/no)
*/

注:
本文參考:
http://blog.csdn.net/yc123h/article/details/51356143
http://blog.csdn.net/sina1990125/article/details/49734997ios

相關文章
相關標籤/搜索