-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetVis.html
More file actions
42 lines (37 loc) · 1.89 KB
/
netVis.html
File metadata and controls
42 lines (37 loc) · 1.89 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
<!doctype html>
<html>
<style>
body {
font-family: Monospace;
background-color: #f0f0f0;
margin: 0px;
overflow: hidden;
}
</style>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="./css/netVis.css" rel="stylesheet" type="text/css">
<br><br>
<div class="legend1">
<h3>Connections</h3>
<div class="legend1"> <p class="country-name"><span class="key-dot defense"></span><span></span> Defense</p> </div>
<div class="legend1"> <p class="country-name"><span class="key-dot entente"></span><span></span> Entente</p> </div>
<div class="legend1"> <p class="country-name"><span class="key-dot neutrality"></span><span></span> Neutrality</p> </div>
<div class="legend1"> <p class="country-name"><span class="key-dot nonaggression"></span><span></span> NonAggression</p> </div>
</div>
</head>
<body>
<!-- Dependencies >
<script src="./lib/d3/d3.min.js" type="text/javascript"></script>
<script src="./lib/three.js/Detector.js" type="text/javascript"></script>
<script src="./lib/three.js/three.min.js" type="text/javascript"></script>
<script src="./lib/three.js/tween.js" type="text/javascript"></script-->
<script src="./js/libs/three.js"></script>
<script src="./lib/three.js/OrbitControls.js" type="text/javascript"></script>
<script src="./js/renderers/Projector.js"></script>
<script src="./js/renderers/CanvasRenderer.js"></script>
<script src="./js/libs/stats.min.js"></script>
<script src="./js/netVis.data.js" type="text/javascript"></script>
<script src="./js/netVis.module.js" type="text/javascript"></script>
</body>
</html>