-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
236 lines (234 loc) · 8.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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Why AeSea</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Montserrat"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="assets/styles.css" />
<link rel="stylesheet" href="assets/sidebar.css" />
<link rel="stylesheet" href="assets/table.css" />
<link rel="stylesheet" href="assets/impact.css" />
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="sidebar">
<div class="top">
<div class="logo">
<img src="assets\logo words.png" alt="User Image" class="user-img" />
</div>
<i class="bx bx-menu" id="btn"></i>
</div>
<ul>
<li>
<a href="#why-aesea">
<i class="bx bx-droplet"></i>
<span class="nav-item">Why AeSea</span>
</a>
<span class="tooltip">Why AeSea</span>
</li>
<li>
<a href="#how-it-works">
<i class="bx bx-buildings"></i>
<span class="nav-item">How it works</span>
</a>
<span class="tooltip">How it works</span>
</li>
<li>
<a href="#impact">
<i class="bx bx-tachometer"></i>
<span class="nav-item">Impact</span>
</a>
<span class="tooltip">Impact</span>
</li>
<li>
<a href="#achievement">
<i class="bx bx-medal"></i>
<span class="nav-item">Achievement</span>
</a>
<span class="tooltip">Achievement</span>
</li>
<li>
<a href="https://waichl.github.io/AeSea.dashboard/">
<i class='bx bxs-dashboard' ></i>
<span class="nav-item">Dashboard</span>
</a>
<span class="tooltip">Dashboard</span>
</li>
</ul>
<script>
let btn = document.querySelector("#btn");
let sidebar = document.querySelector(".sidebar");
btn.onclick = function () {
sidebar.classList.toggle("active");
};
</script>
</div>
<div class="container">
<div class="wrapper-1" id="why-aesea">
<h1 class="title">Why AeSea</h1>
<div class="underline"></div>
<div class="row">
<div class="col-md-6 text-box">
<h2>What We Facing</h2>
<p>
HK has high energy consumption and aggressive goals <br />
Commercial buildings energy use = 1 Little Boy Atomic Bomb per 5
hours
</p>
</div>
<div class="col-md-6 right-img">
<div style="text-align: left">
<img src="assets/image1.png" alt="Image 1" class="img-fluid" />
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 left-img">
<img src="assets/image2.png" alt="Image 2" class="img-fluid" />
</div>
<div class="col-md-6 text-box">
<h2>Our Opportunity</h2>
<p>
85% of HK citizens use seawater to flush their toilets<br />
15 Olympic swimming pool worth of seawater is supplied every hour
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 text-box">
<h2>What We can Do</h2>
<p>
AeSea can ultilize the seawater for flushing<br />
Being Low-Carbon, Efficient, Easy to Manage
</p>
</div>
<div class="col-md-6 right-img">
<img src="assets/image3.png" alt="Image 3" class="img-fluid" />
</div>
</div>
</div>
<div class="wrapper-2" id="how-it-works">
<h1 class="title">How It Works</h1>
<div class="underline"></div>
<div class="row">
<div class="col-md-6 left-img">
<img src="assets/diagram.gif" alt="Gif 1" class="img-fluid" />
</div>
<div class="col-md-6 text-box">
<h2>Working Principle</h2>
<p>
AeSea System use flushing water to absorb the heat from the
refrigerant<br />
It made possible by the higher heat transfer rate of water than
air
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 text-box">
<h2>Integrated Dashboard</h2>
<p>
Our Solution includes a dashboard for monitoring and control<br />
It also integrate a predictive mantanence system to minimize
unexpected failure
</p>
</div>
<div class="col-md-6 right-img">
<div style="text-align: left">
<img src="assets/dashboard.png" alt="Image 4" class="img-fluid" />
</div>
</div>
</div>
</div>
<div class="wrapper-3" id="impact">
<h1 class="title">Impact</h1>
<div class="underline"></div>
<div class="row">
<h2 class="impact-title">
What we did for Well Tech Center past year:
</h2>
<div class="col-md-12">
<div class="value-box">
<div class="value-part" id="carbon-saved">
<span class="impact-value" id="electricity">41000</span><br />
<span class="impact-unit" id="electricity-unit">kWh Saved</span>
</div>
<div class="equal-sign">=</div>
<div class="value-part" id="relative-value">
<span class="impact-value" id="electricity-eqv">270</span><br />
<span class="impact-unit" id="electricity-eqv-unit"
>Tons of Co2e</span
>
</div>
</div>
</div>
</div>
<div class="row">
<div class="button-box">
<button class="btn btn-success btn-block col-md-3" onclick="updateToTrees()">
<i class="bx bxs-tree"></i>
</button>
<button
class="btn btn-secondary btn-block col-md-3"
onclick="updateToCo2e()"
>
<img
src="assets/co2.png"
alt="co2"
class="img-fluid"
id="co2-unit"
/>
</button>
<button class="btn btn-primary btn-block col-md-3" onclick="updateToCars()">
<i class="bx bxs-car"></i>
</button>
<button
type="button"
class="btn btn-warning btn-block col-md-3"
onclick="updateToDollar()"
>
<i class="bx bx-dollar" style="color: #ffffff"></i>
</button>
</div>
</div>
</div>
<div class="wrapper-4" id="achievement">
<h1 class="title">Achievement</h1>
<div class="underline"></div>
<div class="row align-items-center">
<div class="col-md-4 col-12 text-center">
<img
src="assets/beamplussilver.png"
alt="Medal"
class="img-fluid"
id="medal"
/>
</div>
<div class="col-md-8 col-12">
<p class="description">
We have achieved significant milestones in our journey, including
receiving the prestigious Well Tech Center award for innovation and
sustainability.
</p>
</div>
</div>
</div>
<script src="assets/scripts.js"></script>
</body>
</html>