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; //允许独立的滚动区域和触摸回弹
}

 

posted @ 2017-08-21 10:11  贝尔格里尔斯  阅读(841)  评论(0编辑  收藏  举报