mirror of
https://github.com/slidevjs/rough-notation.git
synced 2026-01-14 17:44:21 +01:00
Merge pull request #1 from kamranahmedse/master
Fix typo in code sample
This commit is contained in:
10
README.md
10
README.md
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# Rough Notation
|
# Rough Notation
|
||||||
|
|
||||||
A small JavaScript library to create and animate annotations on a web page
|
A small JavaScript library to create and animate annotations on a web page.
|
||||||
|
|
||||||
Rough Notation uses [RoughJS](https://roughjs.com) to create a hand-drawn look and feel. Elements can be annotated in a number of different styles. Animation duration and delay can be configured, or just turned off.
|
Rough Notation uses [RoughJS](https://roughjs.com) to create a hand-drawn look and feel. Elements can be annotated in a number of different styles. Animation duration and delay can be configured, or just turned off.
|
||||||
|
|
||||||
@@ -38,7 +38,7 @@ Once you have the annotation object, you can call `show()` or `hide()` on it to
|
|||||||
```javascript
|
```javascript
|
||||||
import { annotate } from 'rough-notation';
|
import { annotate } from 'rough-notation';
|
||||||
|
|
||||||
const e = document.quereySelector('#myElement');
|
const e = document.querySelector('#myElement');
|
||||||
const annotation = annotate(e, { type: 'underline' });
|
const annotation = annotate(e, { type: 'underline' });
|
||||||
annotation.show();
|
annotation.show();
|
||||||
```
|
```
|
||||||
@@ -50,9 +50,9 @@ rough-notation provides a way to order the animation of annotations by creating
|
|||||||
```javascript
|
```javascript
|
||||||
import { annotate, annotationGroup } from 'rough-notation';
|
import { annotate, annotationGroup } from 'rough-notation';
|
||||||
|
|
||||||
const a1 = annotate(document.quereySelector('#e1'), { type: 'underline' });
|
const a1 = annotate(document.querySelector('#e1'), { type: 'underline' });
|
||||||
const a2 = annotate(document.quereySelector('#e3'), { type: 'box' });
|
const a2 = annotate(document.querySelector('#e3'), { type: 'box' });
|
||||||
const a3 = annotate(document.quereySelector('#e3'), { type: 'circle' });
|
const a3 = annotate(document.querySelector('#e3'), { type: 'circle' });
|
||||||
|
|
||||||
const ag = annotationGroup([a3, a1, a2]);
|
const ag = annotationGroup([a3, a1, a2]);
|
||||||
ag.show();
|
ag.show();
|
||||||
|
|||||||
Reference in New Issue
Block a user