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

https://github.com/motdotla/signature-mark

Draw on a canvas with a smooth signature.
https://github.com/motdotla/signature-mark

Last synced: 6 months ago
JSON representation

Draw on a canvas with a smooth signature.

Awesome Lists containing this project

README

          

# signature-mark

Draw on a canvas with a smooth signature. Try the [demo](http://codepen.io/motdotla/full/tqLBo).

```javascript
SignatureMark(document.getElementById("some-canvas"));
```

signature-mark

## Usage

```html



var some_canvas = document.getElementById("some-canvas");
some_canvas.width = 900;
some_canvas.height = 500;

SignatureMark(some_canvas);

```

## Development

Edit only files under `/src` directory. Then run the following to generate the `/build` directory.

```
npm install
grunt
```

Visit to test out your changes.