-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (60 loc) · 2.88 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
<!doctype html>
<html lang="en">
<head>
<title>Andrew Moore's Semi-Complete 3D CV</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<style>
.itemOfInterest{
max-width: 400px;
min-width: 200px;
width: 20%;
}
hr{
max-width: 480px;
min-width: 240px;
width: 22%;
border-bottom: 2px #5CD9FF solid;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 text-center">
<h1><span class="glyphicon glyphicon-tower"></span> Welcome to the Interactive 3D CV</h1>
<p>This is an Experimental 3D Interactive CV Experience. It is made using three.js and many useful extensions.</p>
<hr />
<p>The webpage and text boxes are true rendered HTML elements within 3D space. Some browsers will sometimes let you interact within the iframe. That's pretty cool when that happens.</p>
<h2>Controls:</h2>
<div class="center-block">
<span class="glyphicon glyphicon-arrow-up"></span> Walk Forward - <span class="badge">W</span><br />
<span class="glyphicon glyphicon-arrow-down"></span> Walk Back - <span class="badge">S</span><br />
<span class="glyphicon glyphicon-repeat"></span> Rotate Left - <span class="badge">A</span><br />
<span class="glyphicon glyphicon-repeat"></span> Rotate Right - <span class="badge">D</span><br />
<br />
</div>
<hr />
<div class="alert alert-info center-block itemOfInterest" ><span class="glyphicon glyphicon-exclamation-sign"></span> Some objects may be clicked on</div>
<div class="alert alert-warning center-block itemOfInterest" ><span class="glyphicon glyphicon-exclamation-sign"></span> Performance may vary - desktop system using Chrome or Safari recommended. </div>
<div class="alert alert-success center-block itemOfInterest" ><span class="glyphicon glyphicon-thumbs-up"></span> Contact me if you feel like it: <span class="label label-default">dangerneck at gmail dot com</span></div>
<hr />
<a href="3DCV.html" class="btn btn-lg btn-info itemOfInterest"><span class="glyphicon glyphicon-eye-open"></span><span class="glyphicon glyphicon-user"></span><span class="glyphicon glyphicon-eye-open"></span> BEGIN</a>
<hr />
<hr />
<hr />
<p class="center-block itemOfInterest">
Credits:<br />
Andrew Moore - The Experience™<br />
<a href="http://threejs.org/">three.js</a><br />
<a href="http://getbootstrap.com/">bootstrap</a><br />
<a href="http://bootswatch.com/cyborg/">bootstrap style</a><br />
<a href="http://glyphicons.com">glyphicons</a><br/>
<a href="http://bootstrap-growl.remabledesigns.com/">bootstrap-growl</a><br />
</p>
</div>
</div>
</div>
<body>
</html>