rough-notation

2024-08-29 • 0.5.1

一个用于在网页上创建动画类型注释的小型 JavaScript 库。

Rough Notation 使用 RoughJS 来创建手绘风格。元素可以用多种不同的样式进行注释。动画的持续时间可以配置,也可以关闭。

<!-- 以下是基于 Vue3 的案列 -->
<script setup>
import { annotate } from 'rough-notation'
const demoRef = ref(null)
onMounted(() => {
  const annotation = annotate(demoRef.value, { type: 'underline' });
  annotation.show();
})
</script>

<template>
  <div ref="demoRef">Hello World</div>
</template>
npm官网查看