pianoroll/pianoroll.html
changeset 14 30ee8c47e48f
child 15 f1ae020c2872
equal deleted inserted replaced
13:435d5c15275a 14:30ee8c47e48f
       
     1 <html>
       
     2 <head>
       
     3     <title>pixi.js example 1</title>
       
     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>
       
    21     <a href="#" onclick="clearInterval(moveInterval); clearInterval(linesInterval); return false;">stop intervals</a>
       
    22     <script src="pixi.js"></script>
       
    23     <script src="app.js"></script>
       
    24 </body>
       
    25 </html>