大前端时代

手写风格的JavaScript库之RoughNotation

2020-07-01  本文已影响0人  酷酷的凯先生

最近发现一个特别好玩的 JavaScript 库,叫 RoughNotation
干嘛用的呢?就是在网页上给文字加标注,比如下划线、方框、高亮文字背景等,不过是手写风格的!

如何使用

npm install --save rough-notation

如何用

import { annotate } from 'rough-notation';
const e = document.querySelector('#myElement');
const annotation = annotate(e, { type: 'underline' });
annotation.show();

效果图


2020-07-01_195637.jpg

更多语法 参照github

上一篇 下一篇

猜你喜欢

热点阅读