1.禁止长按屏幕弹出对话框并选中文字
/*禁止长按选择文字事件*/ * {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
2.页面滑动加速(惯性)
/*滚动加速*/
body,
html {
-webkit-overflow-scrolling: touch; //允许独立的滚动区域和触摸回弹
}