-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (30 loc) · 857 Bytes
/
index.html
File metadata and controls
38 lines (30 loc) · 857 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>3D Sloth</title>
<style>
body { background: black; color: white; font-family: monospace; }
canvas { border: 1px solid white; }
label { display: block; margin-top: 10px; }
</style>
</head>
<body>
<h2>3D Sloth</h2>
<label>Global Rotation
<input type="range" min="-180" max="180" value="0" id="globalRotSlider">
</label>
<label>Upper Arm
<input type="range" min="-90" max="90" value="0" id="upperArmSlider">
</label>
<label>Lower Arm
<input type="range" min="-90" max="90" value="0" id="lowerArmSlider">
</label>
<button id="animButton">Toggle Animation</button>
<p id="perf">FPS: </p>
<canvas id="webgl" width="600" height="600"></canvas>
<script src="cuon-matrix.js"></script>
<script src="cuon-utils.js"></script>
<script src="asgn2.js"></script>
</body>
</html>