-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
46 lines (34 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Volumetric Particle Flow</title>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900' rel='stylesheet' type='text/css'>
<link href="flow.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="error">Unfortunately, your browser does not support all of the required features. You can still view a <a href="http://youtu.be/a0hJAZfIRvE">video.</a></div>
<canvas id="render" width="1" height="1" style="background: black;"></canvas>
<div id="gui">
<div id="count-wrapper">
<span class="label">PARTICLE COUNT</span>
<div id="count-16">66K</div><div id="count-17">131K</div><div id="count-18">262K</div><div id="count-19">524K</div><div id="count-20">1M</div><div id="count-21">2M</div>
</div>
<div id="speed-wrapper">
<span class="label">SPEED</span><div id="speed-slider" class="slider"></div>
</div>
<div id="turbulence-wrapper">
<span class="label">TURBULENCE</span><div id="turbulence-slider" class="slider"></div>
</div>
<div id="color-wrapper">
<div id="color-label">COLOR</div>
<canvas id="picker" width="170" height="170"></canvas>
</div>
</div>
<div id="footer"><a href="http://david.li">David.Li</a> | <a href="http://youtu.be/a0hJAZfIRvE">Video</a></div>
<script src="shared.js"></script>
<script src="ui.js"></script>
<script src="flow.js"></script>
<script src="main.js"></script>
</body>
</html>