1
0
Fork 0
soundbox/README.md

13 lines
193 B
Markdown
Raw Normal View History

2015-02-17 10:03:09 +00:00
# soundbox
A super simple JS library for playing sound effects
2015-02-17 10:13:49 +00:00
To use:
```javascript
var soundbox = new SoundBox();
soundbox.add("beep", "beep.wav");
// later....
soundbox.play("beep");
```