-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-three.html
More file actions
33 lines (33 loc) · 1.36 KB
/
project-three.html
File metadata and controls
33 lines (33 loc) · 1.36 KB
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
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~ File: project-three.html ~
~ Author: Dylan Bryan ~
~ Date: 6/7/21, 8:54 AM ~
~ Project: project-three ~
~ Purpose: Main web page container for animation ~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Project Three</title>
<link rel="stylesheet" href="styles.css">
<script src="three.min.js"></script>
<script src="project-three.js"></script>
</head>
<body onload="init()">
<div id="animate-container">
<h1>Project Three</h1>
<div id="direction-container">
<p>Use arrow keys to adjust view</p>
<label for="animate">Animate</label>
<input type="checkbox" id="animate"/>
</div>
</div>
<div id="canvas-holder">
<canvas id="glcanvas"></canvas>
</div>
</body>
</html>