-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathindex.html
42 lines (36 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ocean Wave Simulation</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href="waves.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="overlay"></div>
<div id="ui">
<div id="camera">
<canvas id="profile" width="350" height="105"></canvas>
<div id="length"></div>
<div id="end"></div>
<div id="wind">
<span id="wind-speed"></span><span id="wind-unit"> m/s</span>
<div id="wind-label">WIND</div>
</div>
<div id="size">
<span id="size-value"></span><span id="size-unit"> m</span>
</div>
<div id="size-label">SIZE</div>
<div id="choppiness"></div>
<div id="choppiness-label">CHOPPINESS</div>
</div>
</div>
<canvas id="simulator"></canvas>
<div id="error">Your browser does not appear to support the required technologies. You can still view this on <a href="http://youtu.be/IrUehq6vJss">YouTube</a>.</div>
<div id="footer"><a href="http://david.li">David.Li</a> | <a href="http://youtu.be/IrUehq6vJss">Video</a></div>
<script src="shared.js"></script>
<script src="simulation.js"></script>
<script src="ui.js"></script>
<script src="waves.js"></script>
</body>
</html>