-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (49 loc) · 1.78 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
<!doctype html>
<!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
<!--[if IE 7]> <html class="ie7 oldie"> <![endif]-->
<!--[if IE 8]> <html class="ie8 oldie"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="">
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Portfolio">
<meta name="author" content="Charles Wang">
<title>Charles Wang Senior Design</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script id="vertShader" type="shader">
varying vec2 vUv;
attribute vec3 normal;
void main() {
vUv = uv;
gl_Position = projectionMatrix *
modelViewMatrix * vec4(position, 1.0 );
}
</script>
<script id="fragShader" type="shader">
precision highp float;
varying vec2 vUv;
uniform float color;
void main(void) {
gl_FragColor = vec4(vec3(color), 1.0);
}
</script>
<!-- Import any font of your choice-->
<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
</head>
<body>
<!--************************************************************************
Container starts here
****************************************************************************-->
<section class="headerStyle" id="TitleHeader">
</section>
<script src="js/three.min.js"></script>
<script src="js/Tween.js"></script>
<script src="js/block.js"></script>
<script src="js/voxelstructure.js"> </script>
<script src="js/puzzlegenerator.js"> </script>
<script src="js/puzzletraverse.js"> </script>
<script src="js/header3d.js"></script>
</body>
</html>