npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

watermark-plus

v1.6.1

Published

水印插件,支持防删除、文本水印、双列文本水印、图片水印、动态适应超长水印文本、支持浏览器端打印

Downloads

200

Readme

js 水印插件

  • 支持文本水印
  • 支持双列文本水印
  • 支持图片水印
  • 可防止被删除
  • 可防止重复渲染
  • 可动态适应超长水印文本
  • 高清晰度
  • 支持浏览器端打印
  • 可配置性强

效果图片

文本水印

文本水印

双列水印文本

双列水印文本

图片水印

通过图片水印方式可以实现私人订制,步骤:

①通过HTML + CSS 实现你想要的内容和样式; ②通过 html2canvas 类似操作将dom转canvas再转image; ③将image传入水印插件

图片水印

可防止被手动删除

可防止被手动删除

项目中效果

项目中效果

使用

import Watermark from 'watermark-plus';

const watermark = new Watermark({
  // 传参
  content: 'Hello World!',
});

// 创建水印
watermark.create();

或者

const { default: Watermark } = require('watermark-plus');

const watermark = new Watermark({
  // 传参
  image: 'https://gw.alipayobjects.com/zos/bmw-prod/59a18171-ae17-4fc5-93a0-2645f64a3aca.svg',
});

// 创建水印
watermark.create();

API

props

| 属性 | 说明 | 默认值 | 类型 | 版本 | | --------------- | ----------------------------------------------------------- | ------------------------------------------------------------ | --------------------- | ----- | | content | 文本水印【与image必填其一】 | | String | | | image | 图片水印【与content必填其一】 | | Image|URL|base64 | 1.5.0 | | tip | 第二列文本水印文本,content 必填 | - | String | 1.6.0 | | imageWidth | 水印图片宽度 | 120 | String|Number | 1.5.0 | | imageHeight | 水印图片高度 | 64 | String|Number | 1.5.0 | | fontWeight | font-weight | normal | String|Number | | | fontSize | font-size 单位px | 14 | String|Number | | | fontFamily | font-family | sans-serif | String | | | color | 水印文本颜色 | #666666 | color|hex|rgb | | | alpha | 水印文本透明度 0~1 0: 表示完全透明,1: 表示完全不透明 | 0.15 | String|Number | | | width | 单个水印宽度 单位px | 200 | String|Number | | | height | 单个水印高度 单位px | 170 | String|Number | | | maxWidth | 单个水印最大宽度 单位px | 380 | String|Number | 1.4.0 | | maxHeight | 单个水印最大高度 单位px | 260 | String|Number | 1.4.0 | | rotate | 水印旋转角度,每个水印以文本中心为原点旋转 | 330 | String|Number | | | zIndex | z-index | 2147483647 | String|Number | | | onSuccess | 当水印创建成功的回调 | 创建成功后,window.HSALPWATERMARK = true表示已创建水印,以防止重复创建水印 | Function | | | onWatermarkNull | 当水印被破坏消失后的回调 | alert | Function | |

注意:

插件内部根据传入的参数动态计算水印文本显示完整时最小宽高,当超出设置的 width、height 时,会动态赋值width、height,但最大不超过maxWidth、maxHeight

方法

| 方法 | 说明 | 版本 | | ------- | -------- | ----- | | create | 创建水印 | | | destroy | 销毁水印 | 1.4.0 |

兼容性

兼容性