forked from playsign/fidemo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (55 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
63 lines (55 loc) · 1.67 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>FIWARE Demo</title>
<style type="text/css">
html, body {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
overflow: hidden;
}
body {
position: absolute;
background: #222;
top: 0px;
left: 0px;
}
#webrocket-container {
position: absolute;
background-color: black;
width: 100%;
height: 100%;
}
#vizicities-viewport {
height: 720px;
left: 50%;
margin: -360px 0 0 -640px;
position: absolute;
top: 50%;
width: 1280px;
}
</style>
<link rel="stylesheet" type="text/css" href="build/vizicities/vizi.css">
<script src="build/webtundra/lib/jquery.js"></script>
<script src="build/webtundra/lib/jquery-ui.js"></script>
<script src="build/webtundra/lib/loglevel.js"></script>
<script src="build/webtundra/lib/three.js"></script>
<script src="build/webtundra/lib/signals.js"></script>
<script src="build/webtundra/lib/jquery.mousewheel.js"></script>
<script src="build/webtundra/lib/jquery.contextmenu.js"></script>
<script src="build/webtundra/lib/three/CSS3DRenderer.js"></script>
<script src="build/webtundra/lib/three/OBJLoader.js"></script>
<script src="build/webtundra/realxtend-webtundra.js"></script>
<script src="build/vizicities/vizi.js"></script>
</head>
<body>
<!-- todo: combine these so that vizi renders with webtundra -->
<div id="webrocket-container"></div>
<div id="vizicities-viewport"></div>
<script src="js/client/debugObject.js"></script>
<script src="main.js"></script>
</body>
</html>