-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (142 loc) · 5.21 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TEMPORALE: COVID-19 Research Visualization</title>
<link rel="stylesheet" href="styles.css">
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon" type="image/png" href="./Icons/favicon.ico" />
<!-- Font selected: Oxygen (https://fonts.google.com/specimen/Oxygen?sidebar.open=true&selection.family=Oxygen:wght@300;400;700) -->
<link href="https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap" rel="stylesheet">
<!-- D3 + D3-Geo + TopoJson (for map) -->
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/topojson.min.js"></script>
<script src="https://d3js.org/d3-geo-projection.v3.min.js"></script>
<!-- DataTables -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="DataTables/datatables.min.css" />
<script type="text/javascript" src="DataTables/datatables.min.js"></script>
<script type="text/javascript"
src="https://cdn.datatables.net/plug-ins/1.10.21/features/scrollResize/dataTables.scrollResize.min.js"></script>
<script type="text/javascript"
src="https://cdn.datatables.net/plug-ins/1.10.22/features/pageResize/dataTables.pageResize.min.js"></script>
<!-- https://github.com/Silvacom/colResize -->
<script type="text/javascript" src="js/dataTables.colResize.js"></script>
<!-- ---Tippy START--- -->
<link rel="stylesheet" href="https://unpkg.com/tippy.js@6/animations/scale.css" />
<!-- Development -->
<script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.min.js"></script>
<!-- <script src="https://unpkg.com/tippy.js@6/dist/tippy-bundle.umd.js"></script> -->
<!-- Production -->
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
<!-- ---Tippy END--- -->
<!-- My scripts -->
<script defer src="index.js"></script>
<script src="paperTable.js"></script>
<script src="moment.js"></script>
</head>
<body id="main">
<div id="overlay"></div>
<div id="loader" class="loadingio-spinner-double-ring-8p4m9ogt059">
<div class="ldio-djvn6nez41v">
<div></div>
<div></div>
<div>
<div></div>
</div>
<div>
<div></div>
</div>
</div>
</div>
<div class="container">
<div class="test">
<!-- The Modal -->
<div id="settingsModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<div class="formPalette">
<form id="radioPalette">
<label>Color palette:</label>
<input type="radio" name="colorPalette" value="Viridis" checked>Viridis</input>
<input type="radio" name="colorPalette" value="Magma">Magma</input>
</form>
</div>
<div class="formScale">
<form id="radioScale">
<label>Scale:</label>
<input type="radio" name="scale" value="Linear" checked>Linear</input>
<input type="radio" name="scale" value="Log">Logarithmic</input>
</form>
</div>
</div>
</div>
<!-- The Modal -->
<div id="aboutModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<div style="text-align: left;">
<p>Hi! My name is Gianluca Tasciotti (Tascio9) and this is my presentation about
CORD-19</p>
</div>
</div>
</div>
<input id="settings" type="image" src="Icons/settings.png" alt="Settings">
<input id="about" type="image" src="Icons/about.png" alt="About">
<!-- <h1 id="state">Hello!</h1> -->
</div>
<div class="title">
<a href="https://www.kaggle.com/allen-institute-for-ai/CORD-19-research-challenge">
<h1 id="titleThesis">TEMPORALE: COVID-19 Research Visualization</h1>
</a>
</div>
<div class="reset">
<button id="buttonReset">Reset</button>
</div>
<div class="chart-div">
</div>
<div class="legend-div">
<div class="yearSelect">
<label class="label">Year: </label>
<select id="selectYear">
<!-- <option value="All">All</option> -->
</select>
</div>
</div>
<div class="barchart-div">
<svg id="barchart"></svg>
</div>
<div class="chart">
<div class="selectChart-div"></div>
<svg id="line-chart"></svg>
</div>
<div class="map-div">
<svg id="worldMap"></svg>
</div>
<div class="filter-div">
<table id="paperTable" class="display pageResize">
<thead>
<tr>
<th>Cord UID</th>
<th>Title</th>
<th>Authors</th>
<th>Nation</th>
<th>Publish Time</th>
<th>Journal</th>
<th>Topic</th>
</tr>
</thead>
<tbody>
<tr></tr>
</tbody>
</table>
</div>
</div>
<script>
</script>
</body>
</html>