annot-server/webapp/templates/pianoroll.html
author cavaliet
Tue, 21 Oct 2014 11:29:55 +0200
changeset 49 5c1702e8d2a4
parent 46 7cff1f0a6882
child 76 029cdbeebf03
permissions -rw-r--r--
move with time and not framerate iteration

<html>
<head>
    <meta charset="UTF-8">
    <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>
         - temps écoulé : <span id="myspan"></span>
     </p>
    <pre id="log"></pre>
    <script src="{{ config['STATIC_URL'] }}/js/pixi.js"></script>
    <script src="{{ config['STATIC_URL'] }}/js/pianoroll.js"></script>
</body>
</html>