-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (108 loc) · 5.13 KB
/
index.html
File metadata and controls
112 lines (108 loc) · 5.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title>Global Trading Insight</title>
<link rel="icon" href="data:;base64,iVBORwOKGO="/>
<link rel="stylesheet" href="css/style.css">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap" rel="stylesheet">
</head>
<body id="out" style="margin-top:2vh">
<div id="container" style="width:80vw; height: 98vh; ">
<div class="row">
<p style="font-size: 2vw; height: 2vh; margin-left: 2vw">Global Trading Insight </p>
</div>
<div class="row justify-content-md-center" style="height: 5vh;">
<div id="year-slider" class="slider"></div>
</div>
<div class="row">
<div class="container col col-lg-10 justify-content-md-center">
<div class="row">
<div class="col">
<div id="scatter" class="view"></div>
</div>
</div>
<div class="row">
<div class="col"><div class="view" >
<div id="overview">
</div>
<div id="slider-group container" style="display: inline-flex;width: 100%;height: 6vh">
<div id="number-slider" class="slider">
<p class="slider-title">Max Number of Nodes</p>
</div>
<div style="margin-left: 1vw">
<p class="slider-title">Zoom In/Out</p>
<div class="relation-btn-group" style="display: inline-flex">
<button class="btn btn-outline-secondary" id="zoomin">+</button>
<button class="btn btn-outline-secondary" id="zoomout">-</button>
<button class="btn btn-outline-secondary" id="reset">Reset</button>
</div>
</div>
</div>
</div></div>
<div class="col">
<div id="geomap" class="view"></div>
</div>
</div>
</div>
<div class="col col-sm-2">
<div id="filter-container">
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-primary active" style="background-color: #2e73ad">
<input type="radio" name="options" id="btnradio1" autocomplete="off" checked> Export
</label>
<label class="btn btn-primary" style="background-color: #b31483">
<input type="radio" name="options" id="btnradio2" autocomplete="off"> Import
</label>
</div>
<div class="filter-btn-group">
<div style="margin-bottom: 10px" >
<input id="search-county-input" type="text" class="form-control" aria-describedby="inputGroup-sizing-sm" placeholder="Search a country..."/>
</div>
<button type="button" class="btn btn-dark" onclick='checkAll()'>Randomly Select 5
</button>
<button type="button" class="btn btn-secondary" style="margin-top: 10px" onclick='uncheckAll()'>Clear Selections
</button>
</div>
<div>
<div id="country-filter" class="overflow-auto"></div>
</div>
</div>
</div>
</div>
</div>
<div id="node-tooltip" class="tooltip-cus">
<div id="tooltip-title"></div>
<p id="tooltip-content"></p>
<div class="chart">
<svg id="country-bar-chart"></svg>
</div>
</div>
<div id="link-tooltip" class="tooltip-cus">
</div>
<div id="tooltip" class="tooltip-cus">
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="js/lib/d3.v6.min.js"></script>
<script src="js/lib/topojson.v3.js"></script>
<script src="js/lib/d3-simple-slider.min.js"></script>
<script src="js/geomap.js"></script>
<script src="js/treemap.js"></script>
<script src="js/overview.js"></script>
<script src="js/barChart.js"></script>
<script src="js/treemap_barchart.js"></script>
<script src="js/main.js"></script>
<script src="js/lib/autocomplete.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-legend/2.25.6/d3-legend.min.js"></script>
</body>
</html>