美文网首页大前端时代
手写风格的JavaScript库之RoughNotation

手写风格的JavaScript库之RoughNotation

作者: 酷酷的凯先生 | 来源:发表于2020-07-01 19:59 被阅读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

相关文章

网友评论

    本文标题:手写风格的JavaScript库之RoughNotation

    本文链接:https://www.haomeiwen.com/subject/lnwhqktx.html