-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html~
257 lines (223 loc) · 10.4 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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!DOCTYPE html>
<html lang="en" class=" js csstransforms3d"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<!-- disable zooming -->
<meta name="viewport" content="initial-scale=1.0, user-scalable=0">
<link rel="stylesheet" href="./cube_files/style.css" media="screen">
<link rel="stylesheet" href="style.css" media="screen">
<style media="screen">
.container {
width: 100%;
height: 100vh;
position: relative;
margin: 0 auto;
border: 0px solid #CCC;
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
-o-perspective: 1000px;
perspective: 1000px;
}
#cube {
width: 100%;
height: 100vh;
position: absolute;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transition: -webkit-transform 1s;
-moz-transition: -moz-transform 1s;
-o-transition: -o-transform 1s;
transition: transform 1s;
}
#cube figure {
display: block;
position: absolute;
width: 100%;
height: 100%;
border: 2px solid black;
line-height: 30px;
font-size: 20px;
font-weight: bold;
color: white;
text-align: center;
}
#cube.panels-backface-invisible figure {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden;
}
#cube .front { background: hsla( 0, 75%, 75%, 1.0 ); }
#cube .back { background: hsla( 45, 75%, 50%, 1.0); }
#cube .right { background: hsla( 120, 75%, 75%, 1.0 ); }
#cube .left { background: hsla( 180, 100%, 50%, 1.0 ); }
#cube .top { background: hsla( 215, 100%, 50%, 1.0 ); }
#cube .bottom { background: hsla( 300, 100%, 50%, 1.0 ); }
#cube .front {
-webkit-transform: translateZ( 100px );
-moz-transform: translateZ( 100px );
-o-transform: translateZ( 100px );
transform: translateZ( 100px );
}
#cube .back {
-webkit-transform: rotateX( -180deg ) translateZ( 100px );
-moz-transform: rotateX( -180deg ) translateZ( 100px );
-o-transform: rotateX( -180deg ) translateZ( 100px );
transform: rotateX( -180deg ) translateZ( 100px );
}
#cube .right {
-webkit-transform: rotateY( 90deg ) translateZ( 100px );
-moz-transform: rotateY( 90deg ) translateZ( 100px );
-o-transform: rotateY( 90deg ) translateZ( 100px );
transform: rotateY( 90deg ) translateZ( 100px );
}
#cube .left {
-webkit-transform: rotateY( -90deg ) translateZ( 100px );
-moz-transform: rotateY( -90deg ) translateZ( 100px );
-o-transform: rotateY( -90deg ) translateZ( 100px );
transform: rotateY( -90deg ) translateZ( 100px );
}
#cube .top {
-webkit-transform: rotateX( 90deg ) translateZ( 100px );
-moz-transform: rotateX( 90deg ) translateZ( 100px );
-o-transform: rotateX( 90deg ) translateZ( 100px );
transform: rotateX( 90deg ) translateZ( 100px );
}
#cube .bottom {
-webkit-transform: rotateX( -90deg ) translateZ( 100px );
-moz-transform: rotateX( -90deg ) translateZ( 100px );
-o-transform: rotateX( -90deg ) translateZ( 100px );
transform: rotateX( -90deg ) translateZ( 100px );
}
#cube.show-front {
-webkit-transform: translateZ( -100px );
-moz-transform: translateZ( -100px );
-o-transform: translateZ( -100px );
transform: translateZ( -100px );
}
#cube.show-back {
-webkit-transform: translateZ( -100px ) rotateX( -180deg );
-moz-transform: translateZ( -100px ) rotateX( -180deg );
-o-transform: translateZ( -100px ) rotateX( -180deg );
transform: translateZ( -100px ) rotateX( -180deg );
}
#cube.show-right {
-webkit-transform: translateZ( -100px ) rotateY( -90deg );
-moz-transform: translateZ( -100px ) rotateY( -90deg );
-o-transform: translateZ( -100px ) rotateY( -90deg );
transform: translateZ( -100px ) rotateY( -90deg );
}
#cube.show-left {
-webkit-transform: translateZ( -100px ) rotateY( 90deg );
-moz-transform: translateZ( -100px ) rotateY( 90deg );
-o-transform: translateZ( -100px ) rotateY( 90deg );
transform: translateZ( -100px ) rotateY( 90deg );
}
#cube.show-top {
-webkit-transform: translateZ( -100px ) rotateX( -90deg );
-moz-transform: translateZ( -100px ) rotateX( -90deg );
-o-transform: translateZ( -100px ) rotateX( -90deg );
transform: translateZ( -100px ) rotateX( -90deg );
}
#cube.show-bottom {
-webkit-transform: translateZ( -100px ) rotateX( 90deg );
-moz-transform: translateZ( -100px ) rotateX( 90deg );
-o-transform: translateZ( -100px ) rotateX( 90deg );
transform: translateZ( -100px ) rotateX( 90deg );
}
</style>
</head>
<body>
<!--<h1>Cube 2 - show sides</h1>-->
<section class="container" id="show-buttons">
<div id="cube" class="panels-backface-invisible show-top">
<figure class="front">
<h2>About</h2>
<p>Hi! I'm Gabe. I've been around. I've been to too many hackathons, burned out on the midnight oil of naive and idealistic ideas that drive the impassioned youth to their paltry and dispassionate servitude. Writing is my passion, and so I write letters the computer can understand by day so I can write letters that the soul can understand by night.</p>
<!-- <button class="show-top topArrow">Show Top</button>
<button class="show-left leftArrow">Show Left</button>
<button class="show-right rightArrow">Show Right</button>
<button class="show-bottom bottomArrow">Show Bottom</button> -->
</figure>
<figure class="back">
<h2>Writings</h2>
<p><a href="https://medium.com/swlh/my-first-experience-at-a-hackathon-a8494b875b34#.kzqq7y3wh">My First Experience at a Hackathon</a></p>
<p><a href="https://medium.com/@Gabraham/the-coming-unification-of-big-data-d5f66c4040f6#.j8i64iy0e">The Coming Unification of Big Data</a></p>
<!-- <button class="show-bottom topArrow">Show Bottom</button>
<button class="show-right leftArrow">Show Right</button>
<button class="show-left rightArrow">Show Left</button>
<button class="show-top bottomArrow">Show Top</button> -->
</figure>
<figure class="right">
<!-- <button class="show-top topArrow">Show Top</button>
<button class="show-front leftArrow">Show Front</button>
<button class="show-back rightArrow">Show Back</button>
<button class="show-bottom bottomArrow">Show Bottom</button> -->
<h2>Projects</h2>
<ul>
<li><a href="https://www.youtube.com/watch?v=PB5PkJqJOyU">Water Quality Detection via Smart-Phone Microscope</a></li>
<li><a href="http://ggaabe.github.io/bsdmg">Bernie Sanders Dank Meme Generator</a></li>
</ul>
</figure>
<figure class="left">
<h2>Worm Brain Simulation</h2>
<!--<iframe width="560" height="315" src="https://www.youtube.com/embed/YWQnzylhgHc" frameborder="0" allowfullscreen></iframe>-->
<p>Here I simulated a roundworm brain on a robot. I contributed significantly to its source code <a href="https://github.com/Connectome/GoPiGo">here</a></p>
<ul>
<li><a href=""></a></li>
</ul>
<!-- <button class="show-top topArrow">Show Top</button>
<button class="show-front rightArrow">Show Front</button>
<button class="show-back leftArrow">Show Back</button>
<button class="show-bottom bottomArrow">Show Bottom</button> -->
<!-- <button class="show-bottom bottomArrow">Show 4</button>
-->
</figure>
<figure class="top">
<h2>Gabriel Garrett</h3>
<!-- <button class="show-back">Show Back</button>
<button class="show-left leftArrow">Show Left</button>
<button class="show-right rightArrow">Show Right</button>
<button class="show-front bottomArrow">Show Front</button> -->
<img src="me.png" id="me" />
<ul>
<li><a href="https://github.com/ggaabe">Github</li>
<li><a href="http://stackoverflow.com/users/3293742/zavtra">Stack Overflow</a></li>
<li><a href="http://devpost.com/ax">Devpost</a></li>
</ul>
<h3 class="bottomArrow instructions">Welcome to my page! Use the arrow keys or swipe to navigate.</h3>
</figure>
<figure class="bottom">
<h2>Websites</h2>
<ul>
<li><a href="http://ggaabe.github.io/stablepal">Stablecoin Cryptocurrency Payment Processor</a></li>
<li><a href="http://ggaabe.github.io/Boxpage/">Single-View Product Purchase Page</a></li>
<li><a href="http://colonyone.github.io/">Landing Page for Lunar Colonization Effort</a></li>
</ul>
<!-- <button class="show-front topArrow">Show Front</button>
<button class="show-left leftArrow">Show Left</button>
<button class="show-right rightArrow">Show Right</button>
<button class="show-back bottomArrow">Show Back</button> -->
</figure>
</div>
</section>
<section id="options">
<!--<p id="show-buttons">
<button class="show-front">Show 1</button>
<button class="show-back">Show 2</button>
<button class="show-right">Show 3</button>
<button class="show-left">Show 4</button>
<button class="show-top">Show 5</button>
<button class="show-bottom">Show 6</button>
And you completely ignored again that her coworkers are in a similar situation and that there are people throughout the bay area in that situation as well, and yet her own poor decisions somehow also justifies inaction to help those people as well. Also ignored again is the concept of thousands of
</p>-->
<!-- <p>
<button id="toggle-backface-visibility">Toggle Backface Visibility</button>
</p>-->
</section>
<script src="./cube_files/hammer.min.js"></script>
<script src="./cube_files/utils.js"></script>
<script src="./cube_files/rotate-box.js"></script>
<p id="disclaimer">Sorry, your browser does not support CSS 3D transforms. This may be broken.</p>
<div id="point-jawn" style="z-index: 2147483647;"></div></body></html>