-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (53 loc) · 2.02 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Global Cooperation and Influence</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/colorbrewer.css">
</head>
<body>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 facts">
</div>
<div id="map-zone" class="col-md-12">
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle dropdown-view" type="button" data-toggle="dropdown">View
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#" onMouseDown="return changeView(0);">Reciprocity</a></li>
<li><a href="#" onMouseDown="return changeView(1);">Cooperation</a></li>
<!-- <li><a href="#" onMouseDown="return changeView(2);">Influence Links</a></li> -->
</ul>
<span class="label label-primary view-select-label"></span>
<span><a class="view-clear-label" href="#" onClick="javascript:allLinks();">[show all]</a></span>
<span><a class="view-clear-label" href="#" onClick="javascript:noLinks();">[clear]</a></span>
</div>
<div id="map-area" class="render-area"></div>
</div>
</div>
</div>
<!-- Load JS libraries -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/queue.min.js"></script>
<script src="js/topojson.js"></script>
<script src="js/d3.min.js"></script>
<script src="js/world-countries.js"></script>
<!-- Choropleth and second visualization -->
<script src="js/vis-choropleth.js"></script>
<footer class="footer">
<div class="container" style="align:center;">
<p class="text-muted">Made by <a href="http://scalable.media.mit.edu" target="_blank">Scalable Cooperation</a> at <a href="http://media.mit.edu" target="_blank">MIT Media Lab</a>
</div>
</footer>
</body>
</html>