HTML5-Guitar-Tab-Player

A music player plug-in for Vexflow

Stars
99

Example usage

/* 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
    });

});