-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.html
53 lines (48 loc) · 1.51 KB
/
test.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
44
45
46
47
48
49
50
51
52
53
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Social Jam</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="css/style.css?v=1">
</head>
<body>
<div id="container">
<header>
<h1>Social Jam</h1>
<span>You can compose music with your bro</span>
</header>
<div id="main" role="main">
<canvas id="can" width="800" height="100"></canvas>
<canvas id="broCan" width="800" height="100"></canvas>
<div id="editing">
<span id="c">C</span>
<span id="d">D</span>
<span id="e">E</span>
<span id="f">F</span>
<span id="g">G</span>
<span id="a">A</span>
<span id="b">B</span>
<span id="rest">REST</span>
</div>
<div id="controls">
<span id="play">PLAY</span>
<span id="stop">STOP</span>
<span id="clear">CLEAR</span>
</div>
</div>
<footer>
Copyright 2011 Brian Ford, Sharon Lee, Andrew Robinson, Kyle Summers
</footer>
</div>
<script src="js/libs/jquery-1.5.1.min.js"></script>
<!-- NOTE: we might not need raphael -->
<script src="js/libs/raphael-min.js"></script>
<script src="js/libs/vexflow-dbg.js"></script>
<!-- My notes/vexflow API -->
<script src="js/notes.js"></script>
<script src="js/test.js"></script>
</body>
</html>