-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
36 lines (31 loc) · 1.07 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>2DCSP</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
</head>
<body>
<script>
var maxWidth = 0, scale = 3, maxHeight = 0, Instance = null;
function changeZoom() {
zoom = 1.5;
drawScene();
}
</script>
<div id="box-list">
<div id="drop-zone"><p id="drop-zone-file" class="drop-zone-ok"></p></div>
</div>
<div id="box-items"></div>
<div id="svg-containerOuter">
<div id="svg-container"></div>
</div>
<div id="opacity-provider"><div id="popup"></div></div>
<div id="menu"><img id="show" src="images/m.png" width="27" height="22" title="Help"></div>
<script src="scripts/svg.js"></script>
<script src="scripts/menu.js"></script>
<script src="scripts/data.js"></script>
<script src="scripts/help.js"></script>
</body>
</html>