1、来个透明 div 覆盖到img上
.imgView{
width: 7.02rem;
height: 5rem;
position: absolute;
top: 0;
left: 0;
z-index: 110;
//阻止代码
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-drag:none;
}
#img {
z-index: 10;
width: 6.54rem;
height: 4.6rem;
//阻止代码
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-drag:none;
}
2 、 pointer-events: none; 禁止点击,加这个就可以了。第一种上面的阻止代码没用,就是加的遮罩才起作用