CSS禁止手机浏览器点击H5界面中的图片,弹出保存等系统选项

img{
	pointer-events:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

pointer-events:none 限制鼠标事件及对覆盖元素层进行穿透

详细介绍:https://www.cnblogs.com/92cz/p/5787693.html

发布了21 篇原创文章 · 获赞 2 · 访问量 4761

猜你喜欢

转载自blog.csdn.net/qq_21479345/article/details/104058112