client/annotviz/app/index.html
author ymh <ymh.work@gmail.com>
Tue, 13 Jan 2015 15:27:20 +0100
changeset 87 9611905b58fe
parent 85 eff9460bd4f2
child 93 79ae42ad97d4
permissions -rw-r--r--
correct code generation + index.html + time display

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="description" content="">
    <meta name="author" content="I.R.I">
    <link rel="shortcut icon" href="/img/favicon.ico">

    <title>Piano Roll</title>

    <!-- Custom styles for this template -->
    <link href="/css/annotviz.css" rel="stylesheet">
</head>

<body>
    <h1>Piano Roll</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="/js/libs-annotviz.js"></script>
    <script>
    var eventCode = "test_1";
    </script>
    <script src="/js/annotviz.js"></script>
    <script>
    var moveInterval = annotviz.moveInterval;
    var verticalLinesInterval = annotviz.verticalLinesInterval;
    </script>
</body>
</html>