一.禁止点击

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;
}

相关文章:

  • 2022-12-23
  • 2021-10-05
  • 2021-11-30
  • 2022-02-03
  • 2021-12-26
  • 2021-08-10
  • 2022-02-06
  • 2021-09-08
猜你喜欢
  • 2022-12-23
  • 2021-12-06
  • 2021-07-19
  • 2022-12-23
  • 2021-08-02
  • 2021-12-27
  • 2022-12-23
相关资源
相似解决方案