-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="https://d3js.org/d3.v7.min.js"></script>
<link rel="stylesheet" href="./css/style.css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/jquery/latest/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/momentjs/latest/moment.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/14.6.3/nouislider.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/14.6.3/nouislider.min.js"></script>
<title>InfoVis Assignment2</title>
</head>
<body>
<h1 id="title">Smoke & Alcohol Visualization</h1>
<div id="buttons">
<!-- <button id="line">Line Chart & Bubble & Choropleth</button> -->
<button id="bubble">Parellel Coordinate Chart & ScatterPlot & Choropleth Chart</button>
<button id="play">Bubble & Choropleth Play</button>
<!-- <button id="choropleth">Only Choropleth</button> -->
<br><br>
<div id="country-list">
<div id="scrollable-list">
<label for="select-all">
<input type="checkbox" id="select-all" checked/>
Select All
</label>
<br><br>
<div id="checkbox-container">
</div>
</div>
</div>
</div>
<div id="layout">
<div id="slider-container">
<div id="slider"></div>
<br>
</div>
<div id="legend"></div>
<div id="chart"></div>
<div id="otherchart">
<div id="bubblechart"></div>
<dive id="map"></div>
</div>
</div>
<script src="./main5.js"></script>
</body>
</html>