An open API service indexing awesome lists of open source software.

https://github.com/sunsetmkt/zhihuwatermark

仿知乎隐写水印 参考 https://v2ex.com/t/877614 提供的信息 由GitHub Copilot自动生成
https://github.com/sunsetmkt/zhihuwatermark

Last synced: 4 months ago
JSON representation

仿知乎隐写水印 参考 https://v2ex.com/t/877614 提供的信息 由GitHub Copilot自动生成

Awesome Lists containing this project

README

          

# zhihuWatermark
仿知乎隐写水印 参考 https://v2ex.com/t/877614 提供的信息 由GitHub Copilot自动生成

## Example

```html

// 获取timestamp
var timestamp = new Date().getTime();
// 获取当前页面的url
var url = window.location.href;
var wmClass = insertWatermark(timestamp, url);
// console.log(wmClass);

```