- 长按图片保存
image.png
<div class="wrapper">
<img src="" alt="">
<div class="tip">长按保存图片</div>
</div>
.wrapper {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
img {
position: absolute;
max-width: 100%;
left: 0;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.tip {
position: absolute;
bottom: 15%;
width: 100px;
height: 50px;
/* 用于长按保存图片的穿透 */
-webkit-user-select: none;
user-select: none;
pointer-events: none;
}
-
autocomplete="off"
表单输入禁用autocomplete
<input type="text" name="username" autocomplete="off">