annot-server/webapp/templates/pianoroll.html
author cavaliet
Mon, 20 Oct 2014 14:57:11 +0200
changeset 46 7cff1f0a6882
parent 42 926f0426ce78
child 49 5c1702e8d2a4
permissions -rw-r--r--
some debug

<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> - 
        <a href="#" onclick="moveContainerMore(); return false;">Move Left</a> - 
        <a href="#" onclick="moveContainerRight(); return false;">Move Right</a>
     </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>