码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2019-03-23 12:57:55      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:jquer   str   用户   水印   编译   tab   ota   code   key   

在网站浏览中,常常需要网页水印,以便防止用户截图或录屏暴露敏感信息后,追踪用户来源。如我们常用的钉钉软件,聊天背景就会有你的名字。那么如何实现网页水印效果呢?

网页水印SDK,实现思路

1.能更具获取到的当前用户信息,如名字,昵称,ID等,生成图片水印
2.生成一个Canvas,覆盖整个窗口,并且不影响其他元素
3.可以修改字体间距,大小,颜色
4.不依赖Jquery
5.需要防止用户手动删除这个Canvas

实现分析

初始参数

?
1
2
3
4
5
6
7
size: 字体大小
color: 字体颜色
id: canvasId
text: 文本内容
density: 间距
clarity: 清晰度
supportTip: Canvas不支持的文字提示

生成Canvas

根据id生成Canvas,画布大小为window.screen大小,若存在原有老的Canvas,清除并重新生成。

画布固定定位在可视窗口,z-index为-1

?
1
2
3
4
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);

指纹生成算法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
       }
     }

防止用户删除

使用定时器,定时检查指纹是否存在

?
1
2
3
4
5
6
let self = this;
  window.setInterval(function(){
  if (!document.getElementById(self.params.id)) {
  self._init();
  }
  }, 1000);

项目编译

使用glup编译

?
1
2
3
4
5
6
7
8
9
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‘)); //压缩后的路径
  });

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

标签:jquer   str   用户   水印   编译   tab   ota   code   key   

原文地址:https://www.cnblogs.com/good10000/p/10583310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!