author | cavaliet |
Mon, 13 Oct 2014 17:53:00 +0200 | |
changeset 15 | f1ae020c2872 |
parent 14 | 30ee8c47e48f |
child 18 | 517e343a86eb |
permissions | -rw-r--r-- |
14 | 1 |
<html> |
2 |
<head> |
|
15
f1ae020c2872
piano roll works fine... and needs visual enhancement
cavaliet
parents:
14
diff
changeset
|
3 |
<title>Piano Roll with pixi.js</title> |
14 | 4 |
<style> |
5 |
body { |
|
6 |
margin: 0; |
|
7 |
padding: 0; |
|
8 |
background-color: #FFF; |
|
9 |
} |
|
10 |
#log { |
|
11 |
height: 20em; |
|
12 |
overflow-y: scroll; |
|
13 |
background-color: #faa; |
|
14 |
} |
|
15 |
</style> |
|
16 |
</head> |
|
17 |
<body> |
|
18 |
<h1>OSC websocket Piano Roll Test</h1> |
|
19 |
<noscript>You must enable JavaScript</noscript> |
|
20 |
<pre id="log"></pre> |
|
15
f1ae020c2872
piano roll works fine... and needs visual enhancement
cavaliet
parents:
14
diff
changeset
|
21 |
<p><a href="#" onclick="clearInterval(moveInterval); clearInterval(linesInterval); return false;">stop intervals</a></p> |
14 | 22 |
<script src="pixi.js"></script> |
23 |
<script src="app.js"></script> |
|
24 |
</body> |
|
25 |
</html> |