我是靠谱客的博主 激动芹菜,最近开发中收集的这篇文章主要介绍vue 页面添加水印并在浏览器不能去除,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

创建watermark.js文件

let watermark = {}
let setWatermark = (str) => {
let id = '1.23452384164.123412416';
if (document.getElementById(id) !== null) {
document.body.removeChild(document.getElementById(id));
}
// 创建一个画布
let can = document.createElement('canvas');
// 设置画布的长宽
can.width = 320;
can.height = 200;
let cans = can.getContext('2d');
// 旋转角度
cans.rotate(-15 * Math.PI / 180);
cans.font = '0.72912vw Vedana';
// 设置填充绘画的颜色、渐变或者模式
cans.fillStyle = 'rgba(200, 200, 200, 0.40)';
// 设置文本内容的当前对齐方式
cans.textAlign = 'left';
// 设置在绘制文本时使用的当前文本基线
cans.textBaseline = 'Middle';
// 在画布上绘制填色的文本(输出的文本,开始绘制文本的X坐标位置,开始绘制文本的Y坐标位置)
cans.fillText(str.name + '
账号:' + str.phone, 30, 105);
cans.font = '0.46872vw Vedana';
cans.fillText(str.company, 30, 85);
cans.font = '0.85496vw Vedana';
cans.fillText("链祺通平台", 80, 55);
// 绘制logo
var img = document.getElementById("imgUrl");
cans.drawImage(img, 30, 30, 40, 40);
cans.font = '0.62496vw Vedana';
var div = document.createElement('div');
div.id = id;
div.style.pointerEvents = 'none';
div.style.top = '5.2vw';
div.style.left = '23.436vw';
div.style.position = 'fixed';
div.style.zIndex = '99999999999999';
div.style.width = '52vw';
div.style.height = '79.52616vw';
div.style.background = 'url(' + can.toDataURL('image/png') + ') left top repeat';
document.body.appendChild(div);
setTimeout(() => {
// 防止用户在控制台修改删除水印
let body = document.getElementsByTagName('body')[0]
let options = {
childList: true,
attributes: true,
characterData: true,
subtree: true,
attributeOldValue: true,
characterDataOldValue: true
}
let observer = new MutationObserver(() => {
div.id = id;
div.style.pointerEvents = 'none';
div.style.top = '5.2vw';
div.style.left = '23.436vw';
div.style.position = 'fixed';
div.style.zIndex = '99999999999999';
div.style.width = '52vw';
div.style.height = '79.52616vw';
div.style.background = 'url(' + can.toDataURL('image/png') + ') left top repeat';
observer.disconnect();
observer.observe(body, options)
return false
})
observer.observe(body, options) // 监听body节点
}, 1000);
// 防止在页面未渲染完成的时候找不到页面id
return id;
}
// 添加水印该方法只允许调用一次
watermark.set = (str) => {
let id = setWatermark(str);
setInterval(() => {
if (document.getElementById(id) === null) {
id = setWatermark(str);
}
}, 500);
window.onresize = () => {
setWatermark(str);
};
}
const outWatermark = (id) => {
if (document.getElementById(id) !== null) {
const div = document.getElementById(id)
div.style.display = 'none'
}
}
watermark.out = () => {
const str = '1.23452384164.123412416'
outWatermark(str)
// 去除水印
}
export default watermark;

页面调用

 var str = {
name: "水印内容",
//
phone: "水印内容",
company: "水印内容"
}
Watermark.set(str)

最后

以上就是激动芹菜为你收集整理的vue 页面添加水印并在浏览器不能去除的全部内容,希望文章能够帮你解决vue 页面添加水印并在浏览器不能去除所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部