移動端開發過程中需要注意的問題
阿新 • • 發佈:2018-12-23
1、防止手機中網頁放大和縮小,這點是最基本的,最為手機網站開發者來說應該都知道的,就是設定meta中的viewport
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> 使用view-port使頁面禁止縮放,通常把user-scable設定為0 來關閉使用者對頁面檢視縮放的行為,也可以寫成user-scalable=no2、蘋果手機的設定
<meta name="apple-mobile-web-app-capable" content="yes">
如果content 設定為yes,Web應用會以全屏模式執行,反之,則不會。content的預設值是no,表示正常顯示。你可以通過只讀屬性
window.navigator.standalone來確定網頁是否以全屏模式顯示。
3、format-detection設定。
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="email=no">
format-detection 啟動或禁用自動識別頁面中的電話號碼、郵箱地址。4、上下拉動滾動條時卡頓、慢。
body {
-webkit-overflow-scrolling: touch;
overflow-scrolling: touch;
}
Android3+和iOS5+支援CSS3的新屬性為overflow-scrolling
5、禁止複製、選中文字
Element {-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
} 解決移動裝置可選中頁面文字(視產品需要而定)
6、長時間按住頁面出現閃退
element {-webkit-touch-callout: none;
}
7、iphone及ipad下輸入框預設內陰影
Element{-webkit-appearance: none;
}
8、ios和android下觸控元素時出現半透明灰色遮罩
Element {-webkit-tap-highlight-color:rgba(255,255,255,0)
}
9、active相容處理 即 偽類 :active 失效
方法一:body新增ontouchstart<body ontouchstart="">
方法二:js給 document 繫結 touchstart 或 touchend 事件
<style>
a {
color: #000;
}
a:active {
color: #fff;
}
</style>
<a herf=foo >bar</a>
<script>
document.addEventListener(‘touchstart‘,function(){},false);
</script>
10、動畫定義3D啟用硬體加速
Element {-webkit-transform:translate3d(0, 0, 0)
transform: translate3d(0, 0, 0);
} 注意:3D變形會消耗更多的記憶體與功耗
11、Retina屏的1px邊框
Element{
border-width: thin;
}
12、旋轉螢幕時,字型大小調整的問題
*{-webkit-text-size-adjust:100%;
}
13、頂部狀態列背景色
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> 說明:除非你先使用apple-mobile-web-app-capable指定全屏模式,否則這個meta標籤不會起任何作用。
如果content設定為default,則狀態列正常顯示。如果設定為blank,則狀態列會有一個黑色的背景。如果設定為blank-translucent,則狀態列顯示為黑色半透明。如果設定為default或blank,則頁面顯示在狀態列的下方,即狀態列佔據上方部分,頁面佔據下方部分,二者沒有遮擋對方或被遮擋。如果設定為blank-translucent,則頁面會充滿螢幕,其中頁面頂部會被狀態列遮蓋住(會覆蓋頁面20px高度,而iphone4和itouch4的Retina螢幕為40px)。預設值是default。
相容性 iOS 2.1 +
14、設定快取
<meta http-equiv="Cache-Control" content="no-cache" /> 手機頁面通常在第一次載入後會進行快取,然後每次重新整理會使用快取而不是去重新向伺服器傳送請求。如果不希望使用快取可以設定no-cache。15、桌面圖示
<link rel="apple-touch-icon" href="touch-icon-iphone.png" /><link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png" />
<link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad-retina.png" />
16、瀏覽器私有及其它meta
QQ瀏覽器
全屏模式<meta name="x5-fullscreen" content="true"> 強制豎屏
<meta name="x5-orientation" content="portrait"> 強制橫屏
<meta name="x5-orientation" content="landscape"> 應用模式
<meta name="x5-page-mode" content="app">
UC瀏覽器
全屏模式<meta name="full-screen" content="yes"> 強制豎屏
<meta name="screen-orientation" content="portrait"> 強制橫屏
<meta name="screen-orientation" content="landscape"> 應用模式
<meta name="browsermode" content="application">
其它
針對手持裝置優化,主要是針對一些老的不識別viewport的瀏覽器,比如黑莓<meta name="HandheldFriendly" content="true">
微軟的老式瀏覽器
<meta name="MobileOptimized" content="320">
windows phone 點選無高光
<meta name="msapplication-tap-highlight" content="no">
17、IOS中input鍵盤事件keyup、keydown、keypress支援不是很好
問題是這樣的,用input search做模糊搜尋的時候,在鍵盤裡面輸入關鍵詞,會通過ajax後臺查詢,然後返回資料,然後再對返回的資料進行關鍵詞標紅。 用input監聽鍵盤keyup事件,在安卓手機瀏覽器中是可以的,但是在ios手機瀏覽器中變紅很慢,用輸入法輸入之後,並未立刻相應keyup事件,只有在通 刪除之後才能相應!解決方法:可以用html5的oninput事件去代替keyup <input type="text" id="testInput">
<script type="text/javascript">
document.getElementById(‘testInput‘).addEventListener(‘input‘, function(e){
var value = e.target.value;
});
</script>