body
節點下插入水印DOM節點,水印節點覆蓋在頁面最上層但不影響頁面正常操做canvas
畫出節點需生成水印的文字生成base64
圖片MutationObserver
方法監聽節點變化,再自動從新生成生成水印DOM節點git
// 生成水印DOM節點 init () { let canvas = document.createElement('canvas') canvas.id = 'canvas' canvas.width = '200' // 單個水印的寬高 canvas.height = '130' this.maskDiv = document.createElement('div') let ctx = canvas.getContext('2d') ctx.font = 'normal 18px Microsoft Yahei' // 設置樣式 ctx.fillStyle = 'rgba(112, 113, 114, 0.1)' // 水印字體顏色 ctx.rotate(30 * Math.PI / 180) // 水印偏轉角度 ctx.fillText(this.inputText, 30, 20) let src = canvas.toDataURL('image/png') this.maskDiv.style.position = 'fixed' this.maskDiv.style.zIndex = '9999' this.maskDiv.id = '_waterMark' this.maskDiv.style.top = '30px' this.maskDiv.style.left = '0' this.maskDiv.style.height = '100%' this.maskDiv.style.width = '100%' this.maskDiv.style.pointerEvents = 'none' this.maskDiv.style.backgroundImage = 'URL(' + src + ')' // 水印節點插到body下 document.body.appendChild(this.maskDiv) },
監聽DOM更改github
// 監聽更改,更改後執行callback回調函數,會獲得一個相關信息的參數對象 Monitor () { let body = document.getElementsByTagName('body')[0] let options = { childList: true, attributes: true, characterData: true, subtree: true, attributeOldValue: true, characterDataOldValue: true } let observer = new MutationObserver(this.callback) observer.observe(body, options) // 監聽body節點 },
props: { // 顯示的水印文本 inputText: { type: String, default: 'waterMark水印' }, // 是否容許經過js或開發者工具等途徑修改水印DOM節點(水印的id,attribute屬性,節點的刪除) // true爲容許,默認不容許 inputAllowDele: { type: Boolean, default: false }, // 是否在組件銷燬時去除水印節點(前提是容許用戶修改DOM,不然去除後會再次自動生成) // true會,默認不會 inputDestroy: { type: Boolean, default: false } }
'waterMark水印'