溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue項目如何實現(xiàn)對某個區(qū)域繪制水印

發(fā)布時間:2021-09-03 13:16:33 來源:億速云 閱讀:122 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹vue項目如何實現(xiàn)對某個區(qū)域繪制水印,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

首先看一下效果:

vue項目如何實現(xiàn)對某個區(qū)域繪制水印

其實原理很簡單,就是使用canvas畫成圖,然后設(shè)置div的背景即可,這里參考了其他人思路又按照我自己的需求,封裝了一個插件,可以直接在項目中使用,這里可以對某一個單獨的區(qū)域設(shè)置水?。?/strong>

'use strict'
 
const watermark = {}
 
/**
 *
 * @param {要設(shè)置的水印的內(nèi)容} str
 * @param {需要設(shè)置水印的容器} container
 */
const setWatermark = (str, container) => {
  const id = '1.23452384164.123412415'
 
  if (container === undefined) {
    return
  }
 
  // 查看頁面上有沒有,如果有則刪除
  if (document.getElementById(id) !== null) {
    const childelement = document.getElementById(id)
    childelement.parentNode.removeChild(childelement)
  }
 
  var containerWidth = container.offsetWidth // 獲取父容器寬
  var containerHeight = container.offsetHeight // 獲取父容器高
  container.style.position = 'relative' // 設(shè)置布局為相對布局
 
  // 創(chuàng)建canvas元素(先制作一塊背景圖)
  const can = document.createElement('canvas')
  can.width = 390 // 設(shè)置每一塊的寬度
  can.height = 200 // 高度
  const cans = can.getContext('2d') // 獲取canvas畫布
  cans.rotate(-20 * Math.PI / 180) // 逆時針旋轉(zhuǎn)π/9
  cans.font = '20px Vedana' // 設(shè)置字體
  cans.fillStyle = 'rgba(200, 200, 200, 0.20)' // 設(shè)置字體的顏色
  cans.textAlign = 'left' // 文本對齊方式
  cans.textBaseline = 'Middle' // 文本基線
  cans.fillText(str, 0, 4 * can.height / 5) // 繪制文字
 
  // 創(chuàng)建一個div元素
  const div = document.createElement('div')
  div.id = id // 設(shè)置id
  div.style.pointerEvents = 'none' // 取消所有事件
  div.style.top = '0px'
  div.style.left = '0px'
  div.style.position = 'absolute'
  div.style.zIndex = '100000'
  div.style.width = containerWidth + 'px'
  div.style.height = containerHeight + 'px'
  div.style.background = 'url(' + can.toDataURL('image/png') + ') left top repeat'
  container.appendChild(div) // 追加到頁面
 
  return id
}
 
// 該方法只允許調(diào)用一次
watermark.set = (str, container) => {
  let id = setWatermark(str, container)
  setInterval(() => {
    if (document.getElementById(id) === null) {
      id = setWatermark(str, container)
    }
  }, 500)
  // 監(jiān)聽頁面大小的變化
  window.onresize = () => {
    setWatermark(str, container)
  }
}
 
export default watermark

在頁面中的使用方法:

引入該插件:

import Watermark from '@/external/watermark'

然后在需要的位置上設(shè)置refs="xxx",因為在vue項目中無法直接document.getElement的方式來獲取元素,只能通過this.$refs.xxx來獲?。?/p>

<div ref="directrecordwp" class="wrapper ">

然后在mounted的鉤子函數(shù)中這樣寫:

// 設(shè)置頁面水印
Watermark.set('高校黨政云記錄管理平臺 ' + this.name, this.$refs.directrecordwp)

以上是“vue項目如何實現(xiàn)對某個區(qū)域繪制水印”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI