-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (58 loc) · 1.96 KB
/
index.html
File metadata and controls
63 lines (58 loc) · 1.96 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
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Adaptech Experience</title>
<link rel="icon" href="assets/secondary.png">
<!-- Link jQuery for the nav js script -->
<script src="js/jquery.min.js"></script>
<!-- Link the seriously library and the camera plugin to use the web cam as the source and the chroma effect -->
<script type="text/javascript" src="js/seriously.js"></script>
<script type="text/javascript" src="js/seriously.camera.js"></script>
<script type="text/javascript" src="js/seriously.chroma.js"></script>
</head>
<body >
<canvas id="myCanvas" width="1000" height="1000"></canvas>
<video autoplay loop class="bgVideo">
<source src="assets/webVideo.mp4" type="video/mp4">
</video>
<div class="mainContainer">
<div class="titleBox">
<h1 class="mainTitle">ADAPTECH EXPERIENCE</h1>
</div>
<div class="buttonBox">
<h2 id="beginButton">START</h2>
</div>
<img id="menuImg1" src="assets/tf.logo.color.png">
<img id="menuImg2" src="assets/primary.png">
</div>
<!-- HTML FOR THE NAV -->
<div class="navHolder">
<img src="assets/secondary.png" class="done" id="navImg">
<ul class="navList">
<li class="navLink" id="snow">SNOW</li>
<li class="navLink" id="woods">WOODS</li>
<li class="navLink" id="tree">TREE LINE</li>
<li class="navLink done" id="done">DONE</li>
</ul>
<a href="http://www.treefrogcamouflage.com" target="new"><img src="assets/tf.logo.color.png" id="treeFrogNav"></a>
</div>
</body>
<style> body {padding: 0; margin: 0;
}
#myCanvas{
position: fixed;
top: -300px;
width: 100%;
z-index: 1;
}
</style>
<script>
</script>
<!--link my custom style sheets -->
<link href="css/mainStyle.css" rel="stylesheet" type="text/css">
<link href="css/navStyles.css" rel="stylesheet" type="text/css">
<!-- scripts that run the nav and chroma keying -->
<script type="text/javascript" src="js/navFunctions.js"></script>
<script type="text/javascript" src="js/videoRender.js"></script>
</html>