pianoroll/pianoroll.html
author cavaliet
Mon, 13 Oct 2014 16:47:37 +0200
changeset 14 30ee8c47e48f
child 15 f1ae020c2872
permissions -rw-r--r--
first step of piano roll (needs to be much improved)

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