1. 问题描述:
页面上需要展示几张图片,并且有放大、缩小、旋转功能,在放大时,图片上出现了蓝色蒙版,如下图:
2. 解决方案:
body{
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
body也可以是任何类名,至此,完美解决!
页面上需要展示几张图片,并且有放大、缩小、旋转功能,在放大时,图片上出现了蓝色蒙版,如下图:
body{
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
body也可以是任何类名,至此,完美解决!