pianoroll/pianoroll.html
author cavaliet
Tue, 14 Oct 2014 12:17:34 +0200
changeset 18 517e343a86eb
parent 15 f1ae020c2872
child 21 89d235bcbbf3
permissions -rw-r--r--
a bit more config

<html>
<head>
    <title>Piano Roll with pixi.js</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            background-color: #FFF;
        }
        #log {
		    height: 20em;
		    overflow-y: scroll;
		    background-color: #faa;
		}
    </style>
</head>
<body>
    <h1>OSC websocket Piano Roll Test</h1>
    <noscript>You must enable JavaScript</noscript>
    <div id="canvasContainer"></div>
    <p><a href="#" onclick="clearInterval(moveInterval); clearInterval(verticalLinesInterval); return false;">stop intervals</a></p>
    <pre id="log"></pre>
    <script src="pixi.js"></script>
    <script src="app.js"></script>
</body>
</html>