zoukankan      html  css  js  c++  java
  • svg轻松实现文字水印

    1. 水印图片生成采用svg,这样可以运行时生成名字或其他信息的图片

    svg模板

    <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300px" height="160px" viewBox="0 0 300 160">
        <text x="-100" y="-30" fill='#000'  transform = "rotate(-35 240 -200)" fill-opacity='0.03' font-size='40'>I love SVG</text>
    </svg>

    一定要记得设置透明度(fill-opacity),否则水印会遮挡正文

    svg需要转码: https://codepen.io/huashiyiqike/pen/rERBeJ

    2. 通过css覆盖在整个页面上

    水印元素放到页面大小的容器的最后面

    父元素:
    position: relative;
    水印元素
    position: absolute; top: 0; bottom: 0; // 整体覆盖 left: 0; 100%; height: 100%; z-index: 100; pointer-events: none; // 对鼠标穿透

    3. 通过js拼接svg,并写入模板或者html

    js: 
    this.watermarkstyle = `background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='200px' height='160px' viewBox='0 0 200 160'%3E %3Ctext x='-100' y='-30' fill='%23000' transform = 'rotate(-35 240 -200)' fill-opacity='0.04' font-size='40'%3E${ this.$store.state.authUser.username }%3C/text%3E %3C/svg%3E ")`

    html:
    <div class="watermark" :style="watermarkstyle"></div>
  • 相关阅读:
    C#:正则表达式
    jsp:
    关于博客的设置
    登录注册案例—MongoDB数据库连接
    cookie封装
    博客样式
    自己的博客
    CentOS7 启动docker.service失败
    合并多个jar包,并通过私服依赖
    springboot+支付宝条码支付开发详解
  • 原文地址:https://www.cnblogs.com/huashiyiqike/p/11171790.html
Copyright © 2011-2022 走看看