移动端H5页面禁止长按保存图片,禁止长按选个文本

1.禁止长按保存图片:

css代码:

pointer-events:none;

2.禁止长按选择文本:

css代码:

-webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;

  

原文地址:https://www.cnblogs.com/zzz-knight/p/12966074.html