【add】水印

This commit is contained in:
fengchenchen
2023-08-16 17:19:05 +08:00
parent 83729f60d3
commit a5179a58b0
2 changed files with 77 additions and 1 deletions
+32 -1
View File
@@ -2,6 +2,7 @@
<a-config-provider :locale="locale">
<div id="app">
<router-view v-if="isRouterAlive"/>
<div class="watermark" v-if="show" v-watermark="{text: watermark, textColor: 'rgba(180, 180, 180, 0.2)'}"></div>
</div>
</a-config-provider>
</template>
@@ -11,6 +12,8 @@ import enUS from 'ant-design-vue/lib/locale-provider/en_US'
import enquireScreen from '@/utils/device'
import moment from 'moment'
import 'moment/locale/zh-cn'
// 水印功能
import '@/utils/warterMark'
moment.locale('zh-cn')
@@ -21,7 +24,26 @@ export default {
data () {
return {
locale: zhCN,
isRouterAlive: true
isRouterAlive: true,
show: true
}
},
computed: {
watermark () {
if (this.$store.getters.userInfo) {
return this.$store.getters.userInfo.username + this.$store.getters.userInfo.realname
}
return null
}
},
watch: {
watermark () {
setTimeout(() => {
this.show = false
this.$nextTick(() => {
this.show = true
})
})
}
},
created () {
@@ -76,4 +98,13 @@ export default {
#app {
height: 100%;
}
.watermark {
pointer-events: none;
position: fixed;
z-index: 999999999;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
</style>
+45
View File
@@ -0,0 +1,45 @@
import Vue from 'vue'
Vue.directive('watermark', {
bind: function (el, binding) {
// 水印文字,父元素,画布宽度,画布高度,字体,文字颜色,画布横坐标
function addWaterMarker (str, parentNode, width, height, font, textColor, fillTextX = '10') {
// 检查父元素是否包含子元素
const elementContains = (parent, child) => parent !== child && parent.contains(child)
const flag = elementContains(parentNode, document.querySelector('canvas'))
// 防止重复创建
if (!flag) {
const can = document.createElement('canvas')
parentNode.appendChild(can)
can.width = width || 300
can.height = height || 140
can.style.display = 'none'
const cans = can.getContext('2d')
cans.rotate(-20 * Math.PI / 180)
cans.font = font || '13px Microsoft Yahei'
cans.fillStyle = textColor || '#DDDDDD'
cans.textAlign = 'left'
cans.textBaseline = 'Middle'
cans.fillText(str, fillTextX, can.height)
// 设置背景图(整个项目中都添加水印建议使用此方法)
// parentNode.style.backgroundImage = "url(" + can.toDataURL("image/png") + ")";
// 创建div 定位覆盖(某个元素,如图片添加水印建议使用此方法)
const div = document.createElement('div')
div.id = str
div.style.pointerEvents = 'none'
div.style.top = '0'
div.style.left = '0'
div.style.position = 'absolute'
div.style.zIndex = '100000'
div.style.width = '100%'
div.style.height = '100%'
div.style.background = 'url(' + can.toDataURL('image/png') + ')'
parentNode.appendChild(div)
}
}
if (binding.value.text) {
addWaterMarker(binding.value.text, el, binding.value.width, binding.value.height, binding.value.font, binding.value.textColor, binding.value.fillTextX)
}
}
})