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

ceshi25

v1.0.10

Published

生成base64格式的水印图片,默认以屏幕宽为宽度,`Math.max(1500, screen.height)`为高度,宽高属性可通过传参进行配置。

Downloads

7

Readme

水印

生成base64格式的水印图片,默认以屏幕宽为宽度,Math.max(1500, screen.height)为高度,宽高属性可通过传参进行配置。

使用

暴露绘制水印图片的generateWatermark方法,并兼容支付宝小程序。

安装:tnpm i @ali/h5-watermark -S

浏览器端(有window对象)

  • generateWatermark方法形参如下:

    type showType = 'contactList' | 'contactDetail' | 'chat' | 'h5Page' | 'meetingDetail'
    
    interface Property {
      width: number;
      height: number;
    }
    
    function generateWatermark(
      config:object, // config参数是通过接口获取的服务端配置
      onlyThePage:showType='h5Page',
      containerProperty:Property|number=Math.max(1500, screen.height)
    ) {
      // 省略
    };
  • 调用Demo如下

    import { generateWatermark } from '@ali/h5-watermark';
    
    var base64Url = generateWatermark({
      watermark: {
          watermarkStatus: 1,
          targetPages: [
              {"name":"contactList","value":"1"},
              {"name":"contactDetail","value":"1"},
              {"name":"chat","value":"1"},
              // {"name":"h5Page","value":"1"},
              {"name":"meetingDetail","value":"1"}
          ],
          contentType: [1, 2, 0],
          contentCustom: "一二三四五六七八九十一二三四五一二三四五六七八九十",
          watermarkShowDensity: 1,
          fontSize: 0,
          fontColor: 2,
          fontDiaphaneity: "10",
          fontStyle: 1,
          userName: "命名命名",
          account: "234435660"
      }
    }, 'meetingDetail', 400);

支付宝小程序组件Rax(无window对象)

👉RAX文档

调用Demo如下

import { Component, createRef } from 'rax';
import View from 'rax-view';
import Watermark from '@ali/h5-watermark';

export default class Home extends Component {
  constructor(props) {
    super(props);
    this.refWatermark = createRef();
    this.state = {
      bg: 'background: url("")',
      config: {
        watermark: {
          watermarkStatus: 1,
          targetPages: [
            {'name':'contactList','value':'1'},
            {'name':'contactDetail','value':'1'},
            {'name':'chat','value':'1'},
            {'name':'meetingDetail','value':'1'}
          ],
          contentType: [1, 2, 0],
          contentCustom: 'IOS-H5',
          watermarkShowDensity: 0,
          fontSize: 0,
          fontColor: 1,
          fontDiaphaneity: '90',
          fontStyle: 1,
          userName: '测试04',
          account: '234435660'
        }
      }
    };
  }

  componentDidMount() {
    setTimeout(() => {
      // generateWatermark方法的可选参数为'h5Page'或'meetingDetail',默认为'h5Page'
      this.refWatermark.current.generateWatermark('h5Page', 700).then((res)=> {
        console.log(res);
        this.setState({
          bg: 'background: url(' + res + ')'
        });
      });
    }, 0);
  }

  render() {
    const {config, bg} = this.state;
    return (
      <View className="home" style={bg}>
        <Watermark config={config} ref={this.refWatermark} />
      </View>
    );
  }
}

调试

  • 浏览器端:npm run dev
  • 小程序:由于该项目为小程序组件,不能单独启动,需以依赖包的形式执行于小程序应用。可通过npm linkyarn link做本地调试。

发布

# build
npm run build
# 发布
tnpm publish