let watermark: any = {};
let setWatermark = (str, option: any = {}) => {
let id = 'linweilie';
if (document.getElementById(id) !== null) {
document.body.removeChild(document.getElementById(id));
}
let can = document.createElement('canvas');
can.width = option.w || 380;
can.height = option.h || 200;
let cans = can.getContext('2d');
cans.rotate((-40 * Math.PI) / 180);
cans.font = 'lighter 18px 微软雅黑';
cans.fillStyle = 'rgba(0, 0, 0, 0.15)';
cans.textAlign = 'left';
cans.textBaseline = 'middle';
cans.fillText(str, can.width / 64, can.height / 1);
let div = document.createElement('div');
div.id = id;
div.style.pointerEvents = 'none';
div.style.top = option.top || '100px';
div.style.left = option.left || '180px';
div.style.position = 'fixed';
div.style.zIndex = '9999999999';
div.style.transform = 'rotate(15deg)';
div.style.width = option.width || document.documentElement.clientWidth + 'px';
div.style.height = option.height || document.documentElement.clientHeight + 'px';
div.style.background = 'url(' + can.toDataURL('image/png') + ') left top repeat';
document.body.appendChild(div);
return id;
};
watermark.set = (str, option) => {
let id = setWatermark(str, option);
setInterval(() => {
if (document.getElementById(id) === null) {
id = setWatermark(str, option);
}
}, 500);
window.onresize = () => {
setWatermark(str, option);
};
};
export default watermark;