永康嘉持电器有限公司前端
小小儁爺
2024-10-09 63e3551a76c7f1b0860786bc61db9880aeb21e90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const watermark = {}
 
const setWatermark = (text, sourceBody) => {
  const id = Math.random() * 10000 + '-' + Math.random() * 10000 + '/' + Math.random() * 10000
 
  if (document.getElementById(id) !== null) {
    document.body.removeChild(document.getElementById(id))
  }
 
  const can = document.createElement('canvas')
  can.width = 100
  can.height = 100
 
  const cans = can.getContext('2d')
  // cans.rotate(0 * Math.PI / 180)
  // cans.rotate(-20 * Math.PI / 180)
  cans.font = '16px Vedana'
  can.fontWeight = 'bolder'
  cans.fillStyle = 'rgba(0, 0, 0, .5)'
  cans.textAlign = 'left'
  cans.textBaseline = 'Middle'
  cans.fillText(text, can.width / 6, can.height / 2)
  // cans.fillText(text, can.width/20, can.height)
 
  const water_div = document.createElement('div')
  water_div.id = id
  water_div.style.pointerEvents = 'none'
  // water_div.style.background = 'url(' + can.toDataURL('image/png') + ') left top repeat'
  water_div.style.background = 'url(' + can.toDataURL('image/png') + ') repeat'
  if (sourceBody) {
    water_div.style.width = '100%'
    water_div.style.height = '100%'
    sourceBody.appendChild(water_div)
  } else {
    // water_div.style.top = '3px'
    // water_div.style.left = '0px'
    water_div.style.position = 'fixed'
    water_div.style.zIndex = '100000'
    water_div.style.width = document.documentElement.clientWidth + 'px'
    water_div.style.height = document.documentElement.clientHeight + 'px'
    document.body.appendChild(water_div)
  }
 
  return id
}
 
/**
 *  该方法只允许调用一次
 *  @param:
 *  @text == 水印内容
 *  @sourceBody == 水印添加在哪里,不传就是body
 * */
watermark.set = (text, sourceBody) => {
  let id = setWatermark(text, sourceBody)
  setInterval(() => {
    if (document.getElementById(id) === null) {
      id = setWatermark(text, sourceBody)
    }
  }, 2000)
  // window.onresize = () => {//防止水印重复添加
  //   setWatermark(text, sourceBody)
  // }
}
 
export default watermark