master
Matt Huntington 5 years ago
commit 671febc69c

@ -0,0 +1,9 @@
const vf = new Vex.Flow.Factory({renderer: {elementId: 'main'}});
const score = vf.EasyScore();
const system = vf.System();
system.addStave({
voices: [score.voice(score.notes('C#5/q, B4, A4, G#4'))]
}).addClef('treble').addTimeSignature('4/4');
vf.draw();

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<script src="https://unpkg.com/vexflow/releases/vexflow-min.js" charset="utf-8"></script>
</head>
<body id="main">
<script src="app.js" charset="utf-8"></script>
</body>
</html>
Loading…
Cancel
Save