• vue 页面加水印


    首先创建一个waterMark.js文件,当然文件命名可自定义,

    'use strict'
     
    const watermark = {}
     
    /**
     *
     * @param {要设置的水印的内容} str
     * @param {需要设置水印的容器} 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' // 设置布局为相对布局
     
      // 创建canvas元素(先制作一块背景图)
      const can = document.createElement('canvas')
      can.width = 200 // 设置每一块的宽度
      can.height = 200 // 高度
      can.size= 20
      const cans = can.getContext('2d') // 获取canvas画布
      cans.rotate(-20 * Math.PI / 180) // 逆时针旋转π/9  cans.font = '20px Vedana' // 设置字体
      cans.fillStyle = 'rgba(0, 0, 0, 0.20)' // 设置字体的颜色
      cans.textAlign = 'left' // 文本对齐方式
      cans.textBaseline = 'Middle' // 文本基线
      cans.fillText(str, 0, 4 * can.height / 5) // 绘制文字
     
      // 创建一个div元素
      const div = document.createElement('div')
      div.id = id // 设置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
    }
     
    // 该方法只允许调用一次
    watermark.set = (str, container) => {
      let id = setWatermark(str, container)
      setInterval(() => {
        if (document.getElementById(id) === null) {
          id = setWatermark(str, container)
        }
      }, 500)
      // 监听页面大小的变化
      window.onresize = () => {
        setWatermark(str, container)
      }
    }
     
    export default watermark
    
    • 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
    • 66
    • 67
    • 68
    • 69
    <div ref="fristhome">vue 页面div>
    
    • 1

    在需要的加水印的页面导入watermark.js文件

    import  waterMark from "../../utils/waterMark"
    // 这是笔者的文件路径,具体的根据个人所放的路径即可,
    
    • 1
    • 2

    方法中调用

    waterMark.set('水印', this.$refs.fristhome)
    
    • 1

    效果:
    在这里插入图片描述

  • 相关阅读:
    什么是push通知栏消息?
    STM32 裸机编程 04 - Makefile 构建自动化
    Java Thread类简介说明
    origin 上下图标
    厨卫家居企业应该开展那些线上营销如何开展?
    Spring Boot 实现各种参数校验,建议收藏!
    Redis小记(一)
    计算机毕业设计ssm+vue基本微信小程序的客户资源管理系统
    适合新手拿来练习的springboot+vue前后端分离小Demo
    企业和个人选择云桌面的云终端还是云服务器?看完本文就知道
  • 原文地址:https://blog.csdn.net/weixin_45527702/article/details/132731141