forked from paulrosen/abcjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.html
43 lines (39 loc) · 1.12 KB
/
workspace.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>abcjs: Tune Editor demo</title>
<script src="bin/abcjs_editor_latest-min.js" type="text/javascript"></script>
<script type="text/javascript">
function load() {
new ABCJS.Editor("abc", { canvas_id: "canvas",
midi_id: "midi",
warnings_id: "warnings",
midi_options: {program: 1,
qpm: 150, type: "qt"},
render_options: {},
gui: false
});
}
</script>
</head>
<body>
<applet id="MIDIPlugin" code="MIDIPlugin.class" name="MIDIPlugin" archive="http://dl.dropbox.com/u/223827/abcjs/MIDIPlugin.jar" height="1" width="1"></applet>
<textarea id="abc" cols="80" rows="15">X: 1
T: Cooley's
M: 4/4
L: 1/8
R: reel
K: Emin
|:D2|EB{c}BA B2 EB|~B2 AB dBAG|FDAD BDAD|FDAD dAFD|
EBBA B2 EB|B2 AB defg|afe^c dBAF|DEFD E2:|
|:gf|eB B2 efge|eB B2 gedB|A2 FA DAFA|A2 FA defg|
eB B2 eBgB|eB B2 defg|afe^c dBAF|DEFD E2:|</textarea>
<div id="warnings"></div>
<button onmousedown="load();">Run</button>
<hr>
<div id="midi"></div>
<div id="canvas"></div>
<!--textarea id="target" cols="80" rows="15"></textarea-->
</body>
</html>