页面禁止长按保存图片和长按复制文字

1 禁止长按保存图片
img
{
pointer-events:none; // 禁止none ,启用auto
}
Tips:pointer-events属性详解:

官方文档:https://www.html.cn/book/css/properties/user-interface/pointer-events.htm
在这里插入图片描述

2 禁止复制文本
*{
		-webkit-touch-callout: none;

            -webkit-user-select: none;

            -moz-user-select: none;

            -ms-user-select: none;

            user-select: none;
          }
Tips:user-select属性详解:

官方文档:https://www.html.cn/book/css/properties/user-interface/user-select.htm
在这里插入图片描述

发布了70 篇原创文章 · 获赞 67 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/qq_37896578/article/details/102745815