移動端meta標籤設定總結

admin發表於2017-02-23
分享一下,移動端頁面開發,meta標籤的一些設定。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!-- 忽略識別郵箱,主要是針對安卓手機會自動將符合郵箱格式的字串識別為郵箱地址-->
<meta content="email=no" name="format-detection" />
<!-- 針對手持裝置優化,主要是針對一些老的不識別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">

相關文章