-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdepth.html
More file actions
170 lines (156 loc) · 3.9 KB
/
depth.html
File metadata and controls
170 lines (156 loc) · 3.9 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html>
<script src="js/jquery.js"></script>
<link href="css/depth.css" rel="stylesheet" type="text/css">
<link href="css/skeleton.css" rel="stylesheet" type="text/css">
<style type="text/css">
</style>
<body>
<div class="controlPanel">
<div id="buttMid1" class="sideButton active">
<center>
1
</center>
</div>
<div id="buttMid2" class="sideButton">
<center>
2
</center>
</div>
<div id="buttMid3" class="sideButton">
<center>
3
</center>
</div>
<div id="buttMid4" class="sideButton">
<center>
4
</center>
</div>
<div id="buttMid5" class="sideButton">
<center>
5
</center>
</div>
<div id="buttMid6" class="sideButton">
<center>
6
</center>
</div>
<div id="buttMid7" class="sideButton">
<center>
7
</center>
</div>
</div>
<div id="depthjs"><center>depth.js</center></div>
<div id="normalBack">
<img id="initialBack" src="images/woodblur.jpg">
<div id="headerBody">
<div id="mainHeading">
depth.js
</div>
<div id="mainBody">
when it comes to backgrounds, you have two basic options.
<BR><BR>
this: standard, static
</div>
</div>
<div id="secondBody">
<div id="secondInroOpac"></div>
<div id="secondInro">
<div id="mainHeading">
</div>
<div id="mainBody">
or this, locking the background in place
<BR><BR>
both great fun,
<BR><BR>
<BR><BR>
but lets dig a little...
</div>
</div>
</div>
</div>
<div id='mainBody'>
<div id="back-1" class="backPanel sect1">
<img id="thirdImg" src="images/centerpoint.jpg">
<div id="mid-1" data-x="0" data-y="0" data-z="90" class="midPanel">
</div>
<div id="front-1" data-x="0" data-y="0" data-z="-20" class="frontPanel">
<center>
and get some depth going!
</center>
</div>
</div>
<div id="back-2" class="backPanel sect2">
<div id="mid-2" data-x="0" data-y="0" data-z="80" class="midPanel">
</div>
<div id="front-2" data-x="0" data-y="0" data-z="1" class="frontPanel">
<div id="eyeLeft" class="eye"></div>
<div id="eyeRight" class="eye"></div>
<div class="teeth teeth1"></div>
<div class="teeth teeth2"></div>
<div class="teeth teeth3"></div>
<div class="teeth teeth4"></div>
<div class="teethBot teeth1"></div>
<div class="teethBot teeth2"></div>
<div class="teethBot teeth3"></div>
<div class="teethBot teeth4"></div>
<div id='mouthText'>
<center>
where less
<BR><BR>
is nomnomnomore!
</center>
</div>
</div>
</div>
<div id="back-3" class="backPanel sect3">
<div id="toptri"></div>
<div id="mid-3" data-x="0" data-y="0" data-z="80" class="midPanel">
<div id="tri"></div>
</div>
<div id="front-3" data-x="0" data-y="0" data-z="1" class="frontPanel">
<center>
and you can read things you otherwise couldn't!
</center>
</div>
</div>
<div id="back-4" class="backPanel sect4">
<div id="mid-4" data-x="0" data-y="0" data-z="99" class="midPanel">
<div id="heartLeft"></div>
</div>
<div id="front-4" data-x="0" data-y="0" data-z="1" class="frontPanel">
<div id="heartText">
<center>
and piece things together in a new way!
</center>
</div>
<div id="heartRight"></div>
</div>
</div>
<div id="back-5" class="backPanel sect5">
<div id="mid-5" data-x="0" data-y="0" data-z="80" class="midPanel">
</div>
<div id="front-5" data-x="0" data-y="0" data-z="1" class="frontPanel">
<div id="botTemp">
pretty cool dare i say!
<BR><BR>
so what now?
<BR><BR>
you may fork it, but i must warn you, it isn't quite ready...yet
<BR><BR>
but have fun, i'm sure if you bug me enough i'll keep fixing it
<BR><BR>
any q's, give me a yodel:
<BR><BR>
ben@benmcphail.com<BR>
<a href="https://github.com/benmcphail" target="_blank">github.com/benmcphail</a>
</div>
</div>
</div>
</div>
<script src="js/depth.js"></script>
</body>
</html>