移动端兼容性
1.IOS移动端click事件300ms的延迟相应
2.一些情况下对非可点击元素(label,span)监听click事件,iso下不会触发,css增加cursor:pointer就搞定了。
3.h5底部输入框被键盘遮挡问题
var oHeight = $(document).height(); //浏览器当前的高度
$(window).resize(function(){
if($(document).height() < oHeight){
$("#footer").css("position","static");
}else{
$("#footer").css("position","absolute");
}
});4.不让 Android 手机识别邮箱
5.禁止 iOS 识别长串数字为电话
6.禁止 iOS 弹出各种操作窗口
7.消除 transition 闪屏
8.iOS 系统中文输入法输入英文时,字母之间可能会出现一个六分之一空格
9.禁止ios和android用户选中文字
10.CSS动画页面闪白,动画卡顿
11.fixed定位缺陷
参考链接
最后更新于