-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (140 loc) · 4.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Visualization project</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<script type="text/javascript" src="js/loader.js"></script> <!-- Google Charts -->
<script type="text/javascript" src="js/main.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
</head>
<body class="landing">
<!-- Header -->
<header id="header">
<h1><a href="index.html">COMP7507</a></h1>
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="hkisland.html">Hong Kong Island</a></li>
<li><a href="klwest.html">Kowloon West</a></li>
<li><a href="kleast.html">Kowloon East</a></li>
<li><a href="ntwest.html">New Territories West</a></li>
<li><a href="nteast.html">New Territories East</a></li>
</ul>
</nav>
</header>
<!-- Banner -->
<section id="banner">
<h2>Visualization in 2020 LegCo Election</h2>
<p>By ZHANG WENJUN, ZUO QING and WANG YAO</p>
<ul class="actions">
<li>
<a href="#started" class="button big">Get started</a>
</li>
</ul>
</section>
<section id="started" class="wrapper style2 special" style="align-self: center">
<div class="container">
<header class="major">
<h2>Age distribution</h2>
</header>
<div class="row" style="padding-left: 10%;">
<div class="button" id="sort_age" style="margin-right: 5%;">Sort (ASC)</div>
<div class="button" id="sort_age_d" style="margin-right: 5%;">Sort (DESC)</div>
<div class="button" id="unsort_age">Sort (name)</div>
</div>
<div class="row">
<div id="age" style="width: 100%; height: 600px;"></div>
</div>
</div>
</section>
<section class="wrapper style1 special" style="align-self: center">
<div class="container">
<header class="major">
<h2>Gender distribution and Education Background</h2>
</header>
<div class="row">
<div id="gender" style="width: 50%; height: 500px;"></div>
<div id="education" style="width: 50%; height: 500px;"></div>
</div>
</div>
</section>
<section class="wrapper style2 special" style="align-self: center">
<div class="container">
<header class="major">
<h2>Investigation from HKU</h2>
</header>
<div class="row">
<div id="investigate" style="width: 100%; height: 750px;"></div>
</div>
</div>
</section>
<section id="two" class="wrapper style1 special">
<div class="container">
<header class="major">
<h2>About us</h2>
<p>COMP7507 Visualization and visual analytics</p>
</header>
<section class="profiles">
<div class="row">
<section class="4u 12u$(medium) 12u$(xsmall) profile">
<img src="images/profile_placeholder.gif" alt="" />
<h4>ZHANG WENJUN</h4>
</section>
<section class="4u 12u$(medium) 12u$(xsmall) profile">
<img src="images/profile_placeholder.gif" alt="" />
<h4>ZUO QING</h4>
</section>
<section class="4u 12u$(medium) 12u$(xsmall) profile">
<img src="images/profile_placeholder.gif" alt="" />
<h4>WANG YAO</h4>
</section>
</div>
</section>
<footer>
<ul class="actions">
<li>
<a href="7507_project_final_report_1130.pdf" class="button big">Our report</a>
</li>
</ul>
</footer>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="8u 12u$(medium)">
<ul class="copyright">
<li>© Untitled. All rights reserved.</li>
</ul>
</div>
<div class="4u$ 12u$(medium)">
<ul class="icons">
<li>
<a class="icon rounded fa-facebook"><span class="label">Facebook</span></a>
</li>
<li>
<a class="icon rounded fa-twitter"><span class="label">Twitter</span></a>
</li>
<li>
<a class="icon rounded fa-google-plus"><span class="label">Google+</span></a>
</li>
<li>
<a class="icon rounded fa-linkedin"><span class="label">LinkedIn</span></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>