webkit,HTML5頭部標籤

你們都知道在移動前端開發中添加一些webkit專屬的HTML5頭部標籤,幫助瀏覽器更好解析html代碼,更好地將移動web前端頁面表現出來。本文整理一些HTML5頭部<meta>標籤經常使用的信息。有錯誤的,敬請留言指正,或能夠留言補充,歡迎留言交流!html

XML/HTML Code:
  1. <!-- 字體編碼 -->  
  2. <meta charset="utf-8" />  
  3.   
  4. <!-- 關鍵字 -->  
  5. <meta name="keywords" content="" />  
  6.   
  7. <!-- 說明 -->  
  8. <meta name="description" content="" />  
  9.   
  10. <!-- 做者 -->  
  11. <meta name="author" content="" />  
  12.   
  13. <!-- 設置文檔寬度、是否縮放 -->  
  14. <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no" />  
  15.   
  16. <!-- 優先使用IE最新版本或chrome -->  
  17. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />  
  18.   
  19. <!-- 360讀取到這個標籤當即錢換到極速模式 -->  
  20. <meta name="renderer" content="webkit" />  
  21.   
  22. <!-- 禁止百度轉碼 -->  
  23. <meta http-equiv="Cache-Control" content="no-siteapp" />  
  24.   
  25. <!-- UC強制豎屏 -->  
  26. <meta name="screen-orientation" content="portrait" />  
  27.   
  28. <!-- QQ強制豎屏 -->  
  29. <meta name="x5-orientation" content="portrait" />  
  30.   
  31. <!-- UC強制全屏 -->  
  32. <meta name="full-scerrn" content="yes" />  
  33.   
  34. <!-- QQ強制全屏 -->  
  35. <meta name="x5-fullscreen" content="ture" />  
  36.   
  37. <!-- QQ應用模式 -->  
  38. <meta name="x5-page-mode" content="app" />  
  39.   
  40. <!-- UC應用模式 -->  
  41. <meta name="browsermode" content="application">  
  42.   
  43. <!-- window phone 點亮無高光 -->  
  44. <meta name="msapplication-tap-highlight" content="no" />  
  45.   
  46. <!-- 安卓設備不自動識別郵件地址 -->  
  47. <meta name="format-detection" name="email=no" />  
  48.   
  49. <!-- iOS設備 -->  
  50.   
  51. <!-- 添加到主屏幕的標題 -->  
  52. <meta name="apple-mobile-web-app-title" content="標題" />  
  53.   
  54. <!-- 是否啓用webApp全屏 -->  
  55. <meta name="apple-mobile-web-app-capable" content="yes" />  
  56.   
  57. <!-- 設置狀態欄的背景顏色,啓用webapp模式時生效 -->  
  58. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent/black/default" />  
  59. <!-- 半透明/黑色/默認白色 -->  
  60.   
  61. <!-- 禁止數字識別爲電話號碼 -->  
  62. <meta name="format-detection" content="telephone=no" />  
  63.   
  64. <!-- 智能添加廣告條 -->  
  65. <meta name="apple-itunes-app" content="app-id=myappstoreID,affiliate-data=myaffiliatedata,app-argument=myurl" />  
相關文章
相關標籤/搜索