h5网页水印SDK的实现代码示例

站长手记 作者: 2024-08-27 23:40:01
在网站浏览中,常常需要网页水印,以便防止用户截图或录屏暴露敏感信息后,追踪用户来源。如我们常用的钉钉软件,聊天背景就会有你的名字。那么如何实现网页水印效果呢?
1.能更具获取到的当前用户信息,如名字,昵称,ID等,生成图片水印
2.生成一个Canvas,覆盖整个窗口,并且不影响其他元素
3.可以修改字体间距,大小,颜色
4.不依赖Jquery
5.需要防止用户手动删除这个Canvas
size: 字体大小
color: 字体颜色
id: canvasId
text: 文本内容
density: 间距
clarity: 清晰度
supportTip: Canvas不支持的文字提示
let body = document.getElementsByTagName('body');
let canvas = document.createElement('canvas');
canvas.style.cssText= 'position: fixed;width: 100%;height: 100%;left:0;top:0;z-index: -1;';
body[0].appendChild(canvas);
let canvas = document.getElementById(this.params.id);
let cxt = canvas.getContext('2d');
let times = window.screen.width * this.params.clarity / this.params.density;//横向文字填充次数
let heightTimes = window.screen.height * this.params.clarity * 1.5/ this.params.density; //纵向文字填充次数
cxt.rotate(-15*Math.PI/180); //倾斜画布
   
for(let i = 0; i < times; i++) {
   for(let j = 0; j < heightTimes; j++) {
         cxt.fillStyle = this.params.color;
         cxt.font = this.params.size + ' Arial';
         cxt.fillText(this.params.text, this.params.density*i, j*this.params.density);
   }
}
let self = this;
window.setInterval(function(){
    if (!document.getElementById(self.params.id)) {
          self._init();
    }
}, 1000);
var gulp = require('gulp'),
    uglify = require("gulp-uglify"),
    babel = require("gulp-babel");
gulp.task('minify', function () {
  return gulp.src('./src/index.js') // 要压缩的js文件
      .pipe(babel())
      .pipe(uglify())
      .pipe(gulp.dest('./dist')); //压缩后的路径
});
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_69814.html
h5网页 SDK