1.禁止图片点击放大
img {
pointer-event:none
}
2.禁止ios识别长串数字为电话
<meta name=
"format-detection"
content=
"telephone=no"
/>
3.禁止复制选中文本
-webkit-user-select:none
4.上下拉卡滚动条时卡顿
body { -webkit-overflow-scrolling: touch; overflow-scrolling: touch; }
5.安卓autoplay没效果
6.解决移动端iPhone设备点击时出现半透明的灰色背景
-
html,body{
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
-
}