网页即时交流
QQ咨询
咨询热线
020-28998648
网页客服,欢迎咨询
商圈信息
      商圈信息
  • 圈主:SVP管理员
  • 粉丝:1 人
  • 人气:5 关注度
网页添加文字水印,防泄密,增宣传
2022-06-18 18:10:59 149
  • 收藏
  • 管理

    添加飞书一样的防泄密背景只需要简单的js即可实现。

    把下面的代码添加到你需要的位置。

    <!--水印开始-->
    <canvas id="myCanvas" width="100%" height="100%" style="border:0px solid #dcdcdc;">
    Your browser does not support the HTML5 canvas tag.
    </canvas>
    
    <script>
    var can = document.createElement('canvas');
    var body = document.body;
    body.appendChild(can);
    can.width=400;
    can.height=200;
    can.style.display='none';
    var cans = can.getContext('2d');
    //ctx.translate(-60, 0);//移动坐标原点
    cans.rotate(-20*Math.PI/180);
    cans.font = "16px Microsoft JhengHei";
    cans.fillText("kk.01j.top",can.width/3,can.height/2);
    body.style.backgroundImage="url("+can.toDataURL("image/png")+")";
    
    </script>
    <!--水印结束-->

    效果展示



    上一页:访问页面自动刷新一次并且在当前网址传入指定参数 下一页:网站底部安全认证代码图片自行保存
    全部评论(0)
     
    网页即时交流
    QQ咨询
    咨询热线
    020-28998648