pianoroll/pianoroll.html
author cavaliet
Mon, 13 Oct 2014 17:53:00 +0200
changeset 15 f1ae020c2872
parent 14 30ee8c47e48f
child 18 517e343a86eb
permissions -rw-r--r--
piano roll works fine... and needs visual enhancement

<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>
    <pre id="log"></pre>
    <p><a href="#" onclick="clearInterval(moveInterval); clearInterval(linesInterval); return false;">stop intervals</a></p>
    <script src="pixi.js"></script>
    <script src="app.js"></script>
</body>
</html>