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

ice-watermark-package

v2.1.5

Published

一个非常简单的前端设置水印package

Downloads

8

Readme

watermark-package

前端添加水印

font-end set watermark

当前文档适用于2.0.0及以上版本,之前版本不适用,使用时请安装2.0.0及以上版本


更新日志

v2.1.2 修复水印移除失效问题(https://github.com/zifeifish/watermark-package/issues/3) v2.1.1 修复窗口缩放刷新后,水印大小不会自适应变化的问题


使用(Usage)

方式一:如果过你的页面足够简单,只是一个简单的html静态页面或者是你不想引入太多的package,那么你可以下载 watermark.umd.min.js 并将其导入到 HTML文件中,这样你就可以使用watermark的这个全局对象来加载水印:

(Download watermark.umd.min.js and include it in your HTML document, this will add a global object called watermark)

<script src="watermark.umd.min.js"></script>

<script type="text/javascript">
      watermark.setWaterMark(
         {
           w_texts: ['娃哈哈', '177****0000'],
         }
      )
</script>

方式二:安装npm包导入到需要使用的项目中去:

(Alternatively you can use a JavaScript package manager to add it to your project)

npm install watermark-package --save

// import
import watermark from 'watermark-package'

导入后就可以调用下面的方法

(After that you can call any of methods that are explained in the following)


watermark.setWaterMark

使用时该方法时传入一个 options 配置对象, 配置对象主要有两个属性:w_textsw_optionsw_texts:水印文案的数组集合可设置多行文案。 w_options:水印参数配置项,如字体大小、颜色等

You can use the watermark.setWaterMark method to set watermark. The value will automatically be escaped for you.

import watermark from 'watermark-package'
// w_texts:水印文案数组集合
watermark.setWaterMark(
   {
      w_texts: ['娃哈哈', '177****0000']
   }
)

options 配置对象还有另一个属性 w_options水印参数配置: 用于设置水印的具体参数如宽度,大小等,各参数说明见下表

If you need more options, like setting the width, you can add an object with options as the last parameter:

import watermark from 'watermark-package'
watermark.setWaterMark(
   {
      w_texts: ['娃哈哈', '177****0000'],
      w_options: {
        w_width: 240,
        w_height: 140,
        w_top: '0px',
        w_left: '0px',
        w_rotateDeg: 25,
        w_font: '1.2rem Vedana',
        w_color: '#666',
        w_opacity: '0.2',
        w_zIndex: '100000',
    }
   }
);

| key | value | default value | |:--|:--|:--| | w_width | A number that the width of the watermark block.(水印块宽度) | 240 | | w_height | A number that the height of the watermark block.(水印块高度) | 140 | | w_top | A string that the distance between the watermark mask layer and the top of the page.(水印遮罩层距离页面顶部的距离) | '0px' | | w_left | A string that the distance between the watermark mask layer and the left of the page.(水印遮罩层距离页面左边的距离) | '0px' | | w_rotateDeg | A string that specifies SameSite attribute that restricts cookie access based on the site context.(水印角度) | 25 | | w_font | A string that the watermark font size, font style(水印的字体大小、字体风格) | '1.2rem Vedana' | | w_color | A string that the watermark font color(水印字体颜色) | '#666' | | w_opacity | A string that the watermark mask layer transparency(水印遮罩层透明度) | '0.2' | | w_zIndex | A string that the zIndex of watermark mask(水印遮罩层层级) | 10000 |

watermark.removeWatermark

清除水印

clear watermark

watermark.removeWatermark()