-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (66 loc) · 3.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Assignment 3 -- three.js Robot</title>
<!-- CSS Libraries -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> -->
<link rel="stylesheet" href="./lib/css/material.icons.css" />
<link rel="stylesheet" href="./lib/css/materialize.min.css" />
<!-- CSS Source -->
<link rel="stylesheet" href="./src/css/main.css" />
<!-- JS Libraries -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="lib/js/three.min.js"></script>
<script src="lib/js/orbitControls.js"></script>
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.6/d3.min.js"></script>
<script src="./lib/js/materialize.min.js"></script>
<!-- JS Source -->
<script src="./src/js/scene.js"></script>
<script src="./src/js/particleSystem.js"></script>
<script src="./src/js/main.js"></script>
</head>
<body onload="App.start();">
<h4 class="center-align">Fluid Flow Visualization</h4>
<div class="container-fluid">
<div class="row">
<div class="particleDiv col s6">
<div id="scene"></div>
</div>
<div class="particleDiv col s6">
<div id="slice"></div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col s10">
<p class="range-field">
<input type="range" id="slider" min="-5" max="5" step="0.1" />
</p>
</div>
<div class="col s1">
<a id="resetBtn" class="btn-floating btn-large waves-effect waves-light teal darken-3 accent-4 tooltipped"
data-position="right" data-tooltip="Reset points color"><i class="material-icons">color_lens</i></a>
</div>
<div class="col s1">
<a id="infoBtn" class="btn-floating btn-large waves-effect waves-light teal darken-3 accent-4 modal-trigger"
data-target="modal1" data-position="right" data-tooltip="Open info"><i
class="material-icons">info</i></a>
</div>
</div>
</div>
<div id="modal1" class="modal teal darken-3">
<div class="modal-content">
<h4>Additional information</h4>
<p>This interactive visualization application is created with three.js and d3.js.</p>
<p>The dataset is experiment of viscous fingers observations by the <a href="https://www.sdsc.edu/">San Diego Supercomputing Center</a></p>
<p><a href="https://www.uni-kl.de/sciviscontest/">Learn more</a></p>
</div>
<!-- <div class="modal-footer"> -->
<!-- <a href="#!" class="modal-close waves-effect waves-green btn-flat">Agree</a> -->
<!-- </div> -->
</div>
</body>
</html>