-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (31 loc) · 966 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="La Grange">
<script>
(function(ns){
})(window.traceLineFw = window.traceLineFw || {});
window.GreenSockGlobals = {};
</script>
<style>
#svg {
border:1px grey solid;
width:1500px;
height: 3000px;
}
</style>
<title>Trace Line</title>
</head>
<body>
<div id="brp"></div>
<!--<canvas id="rootCanvas" width="1600" height="600"></canvas>-->
<button id="ctrl">Dessine moué</button>
<button id="getbrp">Sette moué les breakpoints</button>
<div id="svg"></div>
<script src="js/common.js"></script>
<script src="js/main.js"></script>
</body>
</html>