Ecosyste.ms: Awesome

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

https://github.com/gregjopa/HTML5-Guitar-Tab-Player

A music player plug-in for Vexflow
https://github.com/gregjopa/HTML5-Guitar-Tab-Player

Last synced: 20 days ago
JSON representation

A music player plug-in for Vexflow

Lists

README

        

## Example usage

```javascript
/* Using TavDiv */

// disable tabdiv processing on page load
Vex.Flow.TabDiv.SEL = null;

$(document).ready(function() {

// tabdiv - parse, create canvas, and draw
var tabDiv = new Vex.Flow.TabDiv("#tab");

// initialize tab player
var player = new TabPlayer({
'tabDiv': tabDiv,
'tempo': 120,
'notesPerBeat': 4,
'animation': true
});

});

```