-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
53 lines (52 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>d3 dashboard</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.1/css/bulma.min.css">
<link rel="stylesheet" href="static/css/style.css">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/topojson@3"></script>
</head>
<body>
<section class="hero is-dark is-bold has-text-centered">
<div class="hero-body">
<div class="container">
<h1 class="title">Co2 emissions</h1>
<h2 class="subtitle">Explore Co2 emissions by year</h2>
<p style="display: inline">Current year:<span id="year-display"></span></p>
<input type="range" class="slider" id="year-select">
<p class="is-size-4">Choose between total emissions or emissions per capita</p>
<div class="control has-text-centered">
<label class="radio">
<input type="radio" name="emissions" value="emissions">Emissions
</label>
<label class="radio">
<input type="radio" name="emissions" value="emissionsPerCapita">Emissions per Capita
</label>
</div>
<p class="is-size-4">Click on a country to see its trends by year</p>
</div>
</div>
</section>
<div id="visualization">
<div class="visualization-side" id="side1">
<svg id="map"></svg>
</div>
<div class="visualization-side" id="side2">
<div>
<svg id="pie"></svg>
</div>
<div>
<svg id="bar"></svg>
</div>
</div>
</div>
<script src="static/js/map.js"></script>
<script src="static/js/pie.js"></script>
<script src="static/js/bar.js"></script>
<script src="static/js/controller.js"></script>
</body>
</html>