-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
394 lines (368 loc) · 11.5 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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css" media="screen" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="http://www.jqueryscript.net/demo/jQuery-Plugin-To-Dim-The-Current-Page-Background-Dim-Background/jquery.dim-background.js"></script>
<script type="text/javascript">
function setRect(div, matchedDiv) {
$(matchedDiv).offset($(div).offset());
$(matchedDiv).height($(div).height());
$(matchedDiv).width($(div).width());
}
$(document).ready(function setupDivs() {
$("div.collapsed").each(function() {
var div=document.createElement("div");
var cDiv=$(this)[0];
cDiv.matchedDiv=div;
var iframe = $(this).children("iframe");
cDiv.iframe = iframe;
$(div).append(iframe);
$(iframe).css("display", "none");
cDiv.state = 'collapsed';
div.onclick=function() { toggle(cDiv);};
$("body").append(div);
$(div).css("position", "absolute");
$(div).css("display", "hidden");
$(div).css("zIndex", 0);
setRect($(this), div);
});
$('.gallery td').each(function() {
this.state = 'hidden';
this.onclick = function() { galleryDisplay(this) };
});
/* $('.hoverImg').each(function() {
if($(this).width() > $(this).height() && $(this).width() > screen.width) {
this.style.width = $(this).width()/3;
}
else if($(this).width() <= $(this).height() && $(this).height() > screen.height) {
this.style.height = $(this).height()/3.5
}
window.alert($(this).width());
this.style.marginLeft = -$(this).width()/2;
this.style.marginTop = -$(this).height()/2;
});*/
});
function galleryDisplay(el) {
if(el.state === 'hidden') {
img = $(el).find('.hoverDiv');
img.css('display', 'inline-block');
el.state = 'visible'
$('.hoverImg').dimBackground({
darkness : 0.5
});
}
else {
img = $(el).find('.hoverDiv');
$('.hoverImg').undim();
img.css('display', 'none');
el.state = 'hidden';
}
}
function toggle(el) {
if (el.state === 'collapsed') {
el.matchedDiv.style.left = $(el).offset().left;
el.matchedDiv.style.top = $(el).offset().top;
el.matchedDiv.style.background=el.style.background;
$(el.matchedDiv).animate({top: $(window).scrollTop() + (screen.height*.05), left:"5%", width:"90%", height:"90%"}, 1000, function() {
el.matchedDiv.style.position = "fixed";
el.matchedDiv.style.top = (screen.height*.05);
$(el.iframe).css("display", "block");
});
el.matchedDiv.style.zIndex=10;
$(el.matchedDiv).dimBackground({
darkness : 0.5
});
el.state = 'expanded';
}
else {
el.matchedDiv.style.position = "absolute";
el.matchedDiv.style.top = $(window).scrollTop() + (screen.height*.05);
$(el.iframe).css("display", "none");
$(el.matchedDiv).undim();
$(el.matchedDiv).animate({top:$(el).offset().top, left:$(el).offset().left, width:$(el).width(), height:$(el).height() }, 1000, function() {
el.style.top = null;
el.style.left = null;
el.matchedDiv.style.zIndex = 0;
el.matchedDiv.style.background = null;
el.matchedDiv.style.position = "absolute";
});
el.matchedDiv.style.display = "hidden";
el.state = "collapsed";
}
}
</script>
</head>
<body>
<!-- ----------- INTRO ----------- -->
<div class="box" id="intro">
<h1>Hello, I'm <span style="color: #4cc8de;">Nina</span></h1>
<h2 style="padding-left: 100px;">I'm a third-year Computer Science major with a passion for learning and creating.</h2>
</div>
<!-- ----------- ABOUT ME ------------ -->
<div class="box" id="about">
<h1 style="text-align: right;">About <span style="color: #efefef;">Me</span></h1>
<p>
Hey there! I'm Nina, a Computer Science major. My first exposure to developing on a computer goes back several years ago to when I first discovered HTML and CSS. It was love at first sight, and I've never looked back. Since then, I've branched out into other programming languages leading up to where I am today, but I'm not stopping. I have more to learn, and I'm eager to continue my pursuit of knowledge in programming and design while refining and sharpening the skills I already possess.
<br><br>
Besides programming, another way in which I like to express my creativity is art. I'm a mainly digital artist though I've done some traditional work. When I'm not drawing or programming, you can find me hanging out with my friends, surfing the web, or playing a video game or two.
</p>
</div>
<!-- ----------- PORTFOLIO ----------- -->
<div class="box" id="portfolio">
<h1>My <span style="color: #e04fed;">Projects</span></h1>
<table style="margin-left: auto; margin-right: auto;">
<tr>
<td>
<div class="transition collapsed" style="background: #4cc8de;" onClick="toggle(this)">
<div class="name">1</div>
<iframe src="project_ab2.html" class="projects"></iframe>
</div>
</td>
<td>
<div class="transition collapsed" style="background: #e04fed;" onClick="toggle(this)">
<div class="name">2</div>
<iframe src="project_flappy.html" class="projects"></iframe>
</div>
</td>
<td>
<div class="transition collapsed" style="background: #4cc8de;" onClick="toggle(this)">
<div class="name">3</div>
<iframe src="project_anteater.html" class="projects"></iframe>
</div>
</td>
</tr>
<tr>
<td>
<div class="transition collapsed" style="background: #e04fed;" onClick="toggle(this)">
<div class="name">4</div>
<iframe src="project_autumn.html" class="projects"></iframe>
</div>
</td>
<td>
<div class="transition collapsed" style="background: #4cc8de;" onClick="toggle(this)">
<div class="name">5</div>
<iframe src="project_shadowfax.html" class="projects"></iframe>
</div>
</td>
</tr>
</table>
</div>
<!-- ----------- ART ----------- -->
<div class="box" id="art">
<h1 style="text-align: right;">My <span style="color: #efefef;">Art</span></h1>
<center>
<table class="gallery" cellpadding="5">
<tr>
<td>
<img src="Images/sehara.png" class="reg">
<div class="hoverDiv">
<img src="Images/sehara.png" class="hoverImg " style="margin-left: -311px; margin-top: -256px;">
</div>
</td>
<td>
<img src="Images/examples_style1.png" class="reg">
<div class="hoverDiv">
<img src="Images/examples_style1.png" class="hoverImg" style="margin-left: -300px; margin-top: -150px;">
</div>
</td>
<td>
<img src="Images/appease.png" class="reg">
<div class="hoverDiv">
<img src="Images/appease.png" class="hoverImg" style="margin-left: -257px; margin-top: -320px;">
</div>
</td>
<td>
<img src="Images/imterrible.png" class="reg">
<div class="hoverDiv">
<img src="Images/imterrible.png" class="hoverImg" style="margin-left: -343px; margin-top: -450px;">
</div>
</td>
<td>
<img src="Images/orangemushroom.png" class="reg">
<div class="hoverDiv">
<img src="Images/orangemushroom.png" class="hoverImg" style="margin-top: -450px; margin-left: -320px;">
</div>
</td>
<td>
<img src="Images/pic.png" class="reg">
<div class="hoverDiv">
<img src="Images/pic.png" class="hoverImg" style="margin-left: -210px; margin-top: -220px;">
</div>
</td>
<td>
<img src="Images/lookup_pic.png" class="reg">
<div class="hoverDiv">
<img src="Images/lookup_pic.png" class="hoverImg" style="margin-left: -350px; margin-top: -328px;">
</div>
</td>
<td>
<img src="Images/lookup_pic - Copy.png" class="reg">
<div class="hoverDiv">
<img src="Images/lookup_pic - Copy.png" class="hoverImg" style="margin-left: -350px; margin-top: -187px;">
</div>
</td>
</tr>
<tr>
<td>
<img src="Images/light_dark.png" class="reg">
<div class="hoverDiv">
<img src="Images/light_dark.png" class="hoverImg" style="margin-left: -375px; margin-top: -350px;">
</div>
</td>
<td>
<img src="Images/ameie_header.gif" class="reg">
<div class="hoverDiv">
<img src="Images/ameie_header.gif" class="hoverImg" style="margin-left: -25px; margin-top: -25px;">
</div>
</td>
<td>
<img src="Images/goshawk.png" class="reg">
<div class="hoverDiv">
<img src="Images/goshawk.png" class="hoverImg" style="margin-left: -75px; margin-top: -75px;">
</div>
</td>
<td>
<img src="Images/kaya_header.gif" class="reg">
<div class="hoverDiv">
<img src="Images/kaya_header.gif" class="hoverImg" style="margin-top: -25px; margin-left: -25px;">
</div>
</td>
<td>
<img src="Images/betty.jpg" class="reg">
<div class="hoverDiv">
<img src="Images/betty.jpg" class="hoverImg" style="margin-left: -197px; margin-top: -350px;">
</div>
</td>
<td>
<img src="Images/zoja.png" class="reg">
<div class="hoverDiv">
<img src="Images/zoja.png" class="hoverImg" style="margin-left: -250px; margin-top: -250px;">
</div>
</td>
<td>
<img src="Images/night.png" class="reg">
<div class="hoverDiv">
<img src="Images/night.png" class="hoverImg" style="margin-left: -285px; margin-top: -357px;">
</div>
</td>
<td>
<img src="Images/rigaldo.png" class="reg">
<div class="hoverDiv">
<img src="Images/rigaldo.png" class="hoverImg" style="margin-left: -316px; margin-top: -350px;">
</div>
</td>
</tr>
<tr>
<td>
<img src="Images/tadase2.png" class="reg">
<div class="hoverDiv">
<img src="Images/tadase2.png" class="hoverImg" style="margin-left: -427px; margin-top: -450px;">
</div>
</td>
<td>
<img src="Images/ah.png" class="reg">
<div class="hoverDiv">
<img src="Images/ah.png" class="hoverImg" style="margin-left: -582px; margin-top: -350px;">
</div>
</td>
<td>
<img src="Images/__viva_la_bam__182.png" class="reg">
<div class="hoverDiv">
<img src="Images/__viva_la_bam__182.png" class="hoverImg" style="margin-left: -280px; margin-top: -350px;">
</div>
</td>
<td>
<img src="Images/hoppou.png" class="reg">
<div class="hoverDiv">
<img src="Images/hoppou.png" class="hoverImg" style="margin-left: -300px; margin-top: -300px;">
</div>
</td>
<td>
<img src="Images/zogogu.png" class="reg">
<div class="hoverDiv">
<img src="Images/zogogu.png" class="hoverImg" style="margin-left: -247px; margin-top: -300px;">
</div>
</td>
<td>
<img src="Images/sailing.png" class="reg">
<div class="hoverDiv">
<img src="Images/sailing.png" class="hoverImg" style="margin-left: -300px; margin-top: -300px;">
</div>
</td>
<td>
<img src="Images/underwater.png" class="reg">
<div class="hoverDiv">
<img src="Images/underwater.png" class="hoverImg" style="margin-left: -500px; margin-top: -334px;">
</div>
</td>
<td>
<img src="Images/reliant.png" class="reg">
<div class="hoverDiv">
<img src="Images/reliant.png" class="hoverImg" style="margin-left: -444px; margin-top: -306px;">
</div>
</td>
</tr>
</table>
</center>
</div>
<!-- ----------- RESUME ----------- -->
<div class="box" id="resume">
<h1>My <span style="color: #4cc8de;">Skills</span></h1>
<table>
<tr>
<td style="vertical-align:top;">
<ul>
<li>Java</li>
<li style="list-style-type:none">
<ul>
<li>Learned Java through two classes in Highschool</li>
</ul>
</li>
<li>Python</li>
<li style="list-style-type:none">
<ul>
<li>Taking introductory programming/Python class series</li>
</ul>
</li>
<li>Unity Game Engine</li>
<li style="list-style-type:none">
<ul>
<li>Learned through some game teams</li>
<li>Scripting in C#</li>
</ul>
</li>
</ul>
</td>
<td style="vertical-align:top;">
<ul>
<li>Web Design</li>
<li style="list-style-type:none">
<ul>
<li>Self taught</li>
<li>HTML</li>
<li>CSS</li>
<li>Javascript/JQuery</li>
</ul>
</li>
<li>Knowledge of Photoshop</li>
</ul>
</td>
</tr>
</table>
</div>
<!-- ----------- CONTACT ----------- -->
<div class="box" id="contact">
<h1 style="text-align: right;">Thank <span style="color: #efefef;">You</span></h1>
<table>
<tr>
<td style="width: 40%; border-right: 1px solid #363636; padding-right: 10px;">
Thank you for visiting this site and taking the time to learn a little about me. If you have any questions, need to contact me, or just want to say hello, feel free to send me an email!
</td>
<td style="width: 50%; padding-left: 50px;">
<h2 style="text-align: left;">ninavolkmuth@gmail.com</h2>
</td>
</tr>
</table>
</div>
</body>
</html>