一.禁止点击
html{ pointer-events:none;}
二.静止选中
#web
html{
user-select:none;
}
#手机端
html{{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}