-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
27 lines (27 loc) · 953 Bytes
/
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Lorenz Attractor</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script type='text/javascript' src='js/require.js'></script>
<script type='text/javascript' src='js/three.js'></script>
</head>
<body>
<div id="legend">
<h1>Lorenz Attractor</h1>
<div id="instructions">
<b>left/right</b> key to rotate<br>
any other key to toggle rotation
</div>
<p>initial value: <span id="initialValue"></span></p>
<p id="variables">
sigma: <span id="sigma"></span><br>
rho: <span id="rho"></span><br>
beta: <span id="beta"></span>
</p>
<p>elapsed time: <span id="time"></span></p>
</div>
<script type='text/javascript' src='js/main.js'></script>
</body>
</html>