-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslide2.html
More file actions
53 lines (40 loc) · 1.48 KB
/
slide2.html
File metadata and controls
53 lines (40 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Slide 2 - CS416 Project 2 by Sicheng Meng</title>
<script src='https://d3js.org/d3.v7.min.js'></script>
<script src="chart2.js"></script>
<link rel="stylesheet" href="./proj2.css">
</head>
<body onload='initOneLine()'>
<header id="header">
<div class="innertube">
<p><strong>Explore World's Energy Consumption and Problems</strong> - CS416 Narrative Visualization Project by Sicheng Meng</p>
</div>
</header>
<main>
<div class="innertube">
<select id="select-country"></select>
<div id="chart2"></div>
</div>
</main>
<div id="left">
<div class="innertube">
<h3>What's the trend of world's energy consumption in history?</h1>
<ul class="bulletpoint">
<li>Now it's your turn to explore!</li>
<li>Select the countries you're interested from the <strong>dropdown menu</strong> and see their energy consumption history. (Note that the scale on yaxis will change based on the country you select.)</li>
<li>Which country has the most interesting line?</li>
</ul>
</div>
</div>
<footer id="footer">
<div class="innertube">
<div class="buttonnext-container">
<button class="next-button" onclick="window.location.href='slide3.html'">Next Slide</button>
</div>
</div>
</footer>
</body>
</html>