ipad webapp禁止长按选择

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; //允许独立的滚动区域和触摸回弹
}
上一篇:NET Core 2.0利用MassTransit集成RabbitMQ


下一篇:Android--数据持久化之SQLite