-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1515 lines (1282 loc) · 52.7 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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta name="referrer" content="origin">
<title>Steven Twerdochlib's Portfolio</title>
<style>
body {
}
.dropbtn {
position: relative;
background: linear-gradient(to right, white 50%, black 50%);
background-size: 200% 100%;
background-position:right bottom;
color: white;
width: 100%;
border: solid;
border-width: 1px 1px 1px 0px;
border-color: #66ccff;
border-spacing: 0;
height: 100%;
line-height: 4vw;
font-size: 2vw;
display: inline-block;
z-index: 999;
}
.dropdown {
position: relative;
text-align: center;
z-index: 999;
}
.dropdown-content {
display: none;
position: absolute;
z-index: 999;
height: 50px;
}
.dropdown-content a {
position: relative;
background: linear-gradient(to right, white 50%, black 50%);
background-size: 200% 100%;
background-position:right bottom;
border: solid;
border-width: 1px 1px 1px 1px;
border-color: #66ccff;
color: white;
vertical-align: middle;
padding: #px #px;
text-decoration: none;
display: block;
height: 4vw;
line-height: auto;
font-size: 2vw;
z-index: 999;
}
.dropdown-content a:hover {background-position:left bottom; transition: all .8s ease-out; color: black;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-position:left bottom; transition: all .8s ease-out; color: black;}
html {
scroll-behavior: smooth;
}
#myImg {
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
#myImg:hover {opacity: 0.7;}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 5; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
/* Modal Content (image) */
.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
/* Caption of Modal Image */
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
/* Add Animation */
.modal-content, #caption {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {-webkit-transform:scale(0)}
to {-webkit-transform:scale(1)}
}
@keyframes zoom {
from {transform:scale(0)}
to {transform:scale(1)}
}
/* The Close Button */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
* {box-sizing:border-box}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
text-align: center;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
background-color: black;
}
/* Position the "next button" to the right */
.prev {
left: 0;
border-radius: 3px 0 0 3px;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
color: black;
background-color: rgba(255,255,255,0.8);
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom:20px;
width: 100%;
text-align: center;
}
.mySlides {
display:none;
margin: 0 auto;
}
.active-slide {
display:block;
margin: 0 auto;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 1vw;
padding: 1vw 1vw;
text-align: center;
}
/* The dots/bullets/indicators */
.dot {
cursor:pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
#sticky {
position: sticky;
top: 0;
z-index: 3;
}
* {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<a name="topOfPage"></a>
<div id="sticky">
<table cellspacing="0" cellpadding="0" style="position: sticky; top:0; border-spacing: 0; color: white; background-color: black; margin:auto; padding:0; width: 100%; height: 1vw; white-space:nowrap; table-layout:fixed; z-index:3">
<tr>
<th style="width: 5%; border: solid; border-width: 0px 0px 0px 0px; border-color: #66ccff;">
</th>
<th style="text-align:left; width: 40%; border: solid; border-width: 0px 0px 0px 1px; border-color: #66ccff; line-height: 2vw;">
<a href="mailto:[email protected]" style="font-size:2vw; color: white; text-decoration: none; text-align:left;">  [email protected]</a>
</th>
<th style="width: 32%; border: solid; border-width: 0px 0px 0px 0px; border-color: #66ccff;">
</th>
<th style="width: 10%; border: solid; border-width: 0px 0px 0px 0px; border-color: #66ccff;">
<a href="AboutMePage.html#AboutMe" style="font-size:2vw; color: white; text-decoration: none;"><b>About Me</b></a>
</th>
<th style="width: 10%; border: solid; border-width: 0px 1px 0px 0px; border-color: #66ccff;">
<a href="CVPage.pdf" target="_blank" style="font-size:2vw; color: white; text-decoration: none;"><b> My CV </b></a>
</th>
<th style="width: 5%; border: solid; border-width: 0px 0px 0px 0px; border-color: #66ccff;">
</th>
</tr>
</table>
<table cellspacing="0" cellpadding="0" style="position: sticky; top:0; border-spacing: 0; background-color: black; margin:auto; padding:0; width: 100%; height: 4vw; white-space:nowrap; table-layout:fixed; z-index:3">
<tr>
<th style="width: 5%; border: solid; border-width: 1px 0px 1px 0px; border-color: #66ccff;">
</th>
<th style="width: 23%; border: solid; border-width: 0px 0px 0px 1px; border-color: #66ccff;">
<div class="dropdown">
<button class="dropbtn" onclick="location.href='#topOfPage'" type="button"><b>Home</b></button>
</div>
</th>
<td style="width: 23%;">
<div class="dropdown">
<button class="dropbtn" onclick="location.href='#ProjectsPage'" type="button"><b>Projects</b></button>
<div class="dropdown-content">
<a href="#WebPageProject"><b> Portfolio Web Page </b></a>
<a href="#UniMajorProject"><b> University Major Project </b></a>
<a href="#GroupProject"><b> University Group Project (App) </b></a>
<a href="#GraphicsProject"><b> Graphics Project </b></a>
<a href="#ALevelProject"><b> A Level Project </b></a>
</div>
</div>
</td>
<td style="width: 23%;">
<div class="dropdown">
<button class="dropbtn" onclick="location.href='#TutorialsPage'" type="button"><b>Tutorials</b></button>
<div class="dropdown-content">
<a href="#AndroidClickerGameTutorial"><b> Android Clicker Game Tutorial </b></a>
<a href="#RobloxSimulatorTutorial"><b> Roblox Simulator Tutorial </b></a>
<a href="#BasicAndroidGameTutorial"><b> Basic Android Game Tutorial </b></a>
</div>
</div>
</td>
<td style="width: 23%;">
<div class="dropdown">
<button class="dropbtn" onclick="location.href='#ContactPage'" type="button"><b>Contact</b></button>
</div>
</td>
<th style="width: 5%; border: solid; border-width: 1px 0px 1px 0px; border-color: #66ccff;">
</td>
</tr>
</table>
</div>
<div style="z-index:-1; margin: 0; padding-left: 10%; padding-top: 8%; padding-bottom: 17%; text-align: left; font-size: 7vw; color: white; background-image: url('VR Background Image.jpeg'); background-repeat: no-repeat; background-size: 100% auto;">
<p style="margin: 0; text-align: left; font-size: 7vw; color: white;">
Steven <br>Twerdochlib's <br>Portfolio
</p>
</div>
<table style="background-color: black; margin:auto; padding:0; height: auto; width: 100%; white-space:nowrap;">
<tr style="height: 4vw; font-size: 1vw; color: white;">
<td colspan="7" style="text-align: center">
<p>Strong Experience With:</p>
</td>
</tr>
<tr>
<td style="width: 20%; text-align: center">
</td>
<td style="width: 12%; text-align: center">
<img src="Unity_Logo.png" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 12%; text-align: center">
<img src="android_studio_logo.jpg" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 12%; text-align: center">
<img src="C_Logo.png" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 12%; text-align: center;">
<img src="Java_Logo.jpg" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 12%; text-align: center">
<img src="HTML_CSS_Logo.jpg" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 20%; text-align: center">
</td>
</tr>
<tr style="height: 4vw;">
</tr>
</table>
<table style="background-color: black">
<tr>
<td>
<a name="ProjectsPage"><h1 style="padding-top: 7vw; margin-top: -7vw;"></h1></a>
<table style="margin:auto; padding:0; height: auto; width: 100%; white-space:nowrap;">
<h1 style="text-align: center; margin:auto; padding:0; color: white; font-size: 7vw; height: auto; line-height: 8vw">Projects</h1>
<a name="WebPageProject"><h1 style="padding-top: 7vw; margin-top: -7vw;"></h1></a>
<p style="line-height: 5vw"> <br></p>
<table style="align: center; margin:auto; padding:0; height: auto; width: 75%; table-layout: fixed;">
<tr>
<td style="color: white; font-size: 4vw; padding:0 1vw 0 1vw;">Portfolio Web Page Project</td>
</tr>
<tr style="color: black; height: 100%">
<td>
<!-- Slideshow container -->
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 1 / 4</div>
<img src="Portfolio.png" width="75%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 2 / 4</div>
<img src="Portfolio2.png" width="75%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 3 / 4</div>
<img src="Portfolio3.png" width="75%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 4 / 4</div>
<img src="Portfolio4.png" width="75%" height="auto">
<div class="text"></div>
</div>
<a class="prev">❮</a>
<a class="next">❯</a>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot" ></span>
<span class="dot" ></span>
<span class="dot"></span>
</div>
</div>
<br>
<!--The slideshow of key projects/tutorials goes here-->
<script type="text/javascript">
(function() {
init(); //on page load - show first slide, hidethe rest
function init() {
parents = document.getElementsByClassName('slideshow-container');
for (j = 0; j < parents.length; j++) {
var slides = parents[j].getElementsByClassName("mySlides");
var dots = parents[j].getElementsByClassName("dot");
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
dots = document.getElementsByClassName('dot'); //dots functionality
for (i = 0; i < dots.length; i++) {
dots[i].onclick = function() {
slides = this.parentNode.parentNode.getElementsByClassName("mySlides");
for (j = 0; j < this.parentNode.children.length; j++) {
this.parentNode.children[j].classList.remove('active');
slides[j].classList.remove('active-slide');
if (this.parentNode.children[j] == this) {
index = j;
}
}
this.classList.add('active');
slides[index].classList.add('active-slide');
}
}
//prev/next functionality
links = document.querySelectorAll('.slideshow-container a');
for (i = 0; i < links.length; i++) {
links[i].onclick = function() {
current = this.parentNode;
var slides = current.getElementsByClassName("mySlides");
var dots = current.getElementsByClassName("dot");
curr_slide = current.getElementsByClassName('active-slide')[0];
curr_dot = current.getElementsByClassName('active')[0];
curr_slide.classList.remove('active-slide');
curr_dot.classList.remove('active');
if (this.className == 'next') {
if (curr_slide.nextElementSibling.classList.contains('mySlides')) {
curr_slide.nextElementSibling.classList.add('active-slide');
curr_dot.nextElementSibling.classList.add('active');
} else {
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
if (this.className == 'prev') {
if (curr_slide.previousElementSibling) {
curr_slide.previousElementSibling.classList.add('active-slide');
curr_dot.previousElementSibling.classList.add('active');
} else {
slides[slides.length - 1].classList.add('active-slide');
dots[slides.length - 1].classList.add('active');
}
}
}
}
})();
</script>
</td>
</tr>
<tr>
<td style="color: white; font-size: 2vw; padding:0 1vw 0 1vw;"><b>Description:</b></td>
</tr>
<tr>
<td style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;">The aim of this project was to create a website that would be able to clearly display all the projects that have been made by or in collaboration with Steven Twerdochlib. The other aim of this project was to show the skill Steven has in HTML, CSS and JavaScript, as well as, his documentation, development, learning skills, etc... This project was created using GitHub as a web service and the code was written using Notepad++, also a website called formspree was used for creating the emailing feature.</td>
</tr>
<tr>
<td style="color: white; padding:0 1vw 0 1vw; font-size: 2vw;"><b>Downloadable Files/Links (if applicable)</b></td>
</tr>
<tr>
<td>
<a href="Requirement Spec.pdf" target="_blank" style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;" download>Requirement Document PDF</a>
<br />
<a href="UI Spec.pdf" target="_blank" style="font-size: 1vw; color: white; padding:0 1vw 1vw;" download>UI Document PDF</a>
<br />
<a href="Images.zip" style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;" download>Images Used ZIP File</a>
</td>
</tr>
</table>
<a name="UniMajorProject"><h1 style="padding-top: 7vw; margin-top: -7vw;"></h1></a>
<p style="line-height: 5vw"> <br></p>
<table style="align: center; margin:auto; padding:0; height: auto; width: 75%; table-layout: fixed;">
<tr>
<td style="color: white; font-size: 4vw; padding:0 1vw 0 1vw;">University Major Project</td>
</tr>
<tr style="color: black; height: 100%">
<td>
<!-- Slideshow container -->
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 1 / 4</div>
<img src="Major Project\MMP Image 1.png" width="25%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 2 / 4</div>
<img src="Major Project\MMP Image 2.png" width="25%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 3 / 4</div>
<img src="Major Project\MMP Image 3.png" width="25%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 4 / 4</div>
<img src="Major Project\MMP Image 4.png" width="25%" height="auto">
<div class="text"></div>
</div>
<a class="prev">❮</a>
<a class="next">❯</a>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot" ></span>
<span class="dot" ></span>
<span class="dot"></span>
</div>
</div>
<br>
<!--The slideshow of key projects/tutorials goes here-->
<script type="text/javascript">
(function() {
init(); //on page load - show first slide, hidethe rest
function init() {
parents = document.getElementsByClassName('slideshow-container');
for (j = 0; j < parents.length; j++) {
var slides = parents[j].getElementsByClassName("mySlides");
var dots = parents[j].getElementsByClassName("dot");
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
dots = document.getElementsByClassName('dot'); //dots functionality
for (i = 0; i < dots.length; i++) {
dots[i].onclick = function() {
slides = this.parentNode.parentNode.getElementsByClassName("mySlides");
for (j = 0; j < this.parentNode.children.length; j++) {
this.parentNode.children[j].classList.remove('active');
slides[j].classList.remove('active-slide');
if (this.parentNode.children[j] == this) {
index = j;
}
}
this.classList.add('active');
slides[index].classList.add('active-slide');
}
}
//prev/next functionality
links = document.querySelectorAll('.slideshow-container a');
for (i = 0; i < links.length; i++) {
links[i].onclick = function() {
current = this.parentNode;
var slides = current.getElementsByClassName("mySlides");
var dots = current.getElementsByClassName("dot");
curr_slide = current.getElementsByClassName('active-slide')[0];
curr_dot = current.getElementsByClassName('active')[0];
curr_slide.classList.remove('active-slide');
curr_dot.classList.remove('active');
if (this.className == 'next') {
if (curr_slide.nextElementSibling.classList.contains('mySlides')) {
curr_slide.nextElementSibling.classList.add('active-slide');
curr_dot.nextElementSibling.classList.add('active');
} else {
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
if (this.className == 'prev') {
if (curr_slide.previousElementSibling) {
curr_slide.previousElementSibling.classList.add('active-slide');
curr_dot.previousElementSibling.classList.add('active');
} else {
slides[slides.length - 1].classList.add('active-slide');
dots[slides.length - 1].classList.add('active');
}
}
}
}
})();
</script>
</td>
</tr>
<tr>
<td style="color: white; font-size: 2vw; padding:0 1vw 0 1vw;"><b>Description:</b></td>
</tr>
<tr>
<td style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;">The aim of this project was to create an app that would be used to allow users to record information on items that they have bought and store this information in the users Google Drive. The key features this app involves are: filtering through items, allowing multiple users to access the same Google Drive database file, providing a scan barcode feature and some other. More information can be in the Final Report which contains all the information on the project and includes all important documents in its appendices that were made throughout the projects such as, Requirement Document.</td>
</tr>
<tr>
<td style="color: white; padding:0 1vw 0 1vw; font-size: 2vw;"><b>Downloadable Files/Links (if applicable)</b></td>
</tr>
<tr>
<td>
<a href="Major Project\Final Report.pdf" target="_blank" style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;" download>Final Report PDF</a>
<br />
<a href="Major Project\Prototype 1.zip" style="font-size: 1vw; color: white; padding:0 1vw 1vw;" download>Prototype 1 ZIP File made in Android Studio</a>
<br />
<a href="Major Project\Prototype 2.zip" style="font-size: 1vw; color: white; padding:0 1vw 1vw;" download>Prototype 2 ZIP File made in Android Studio</a>
<br />
<a href="Major Project\Prototype 3.zip" style="font-size: 1vw; color: white; padding:0 1vw 1vw;" download>Prototype 3 ZIP File made in Android Studio</a>
<br />
<a href="Major Project\MoneyRecorder.zip" style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;" download>Money Recorder (Final Code) ZIP File made in Android Studio</a>
</td>
</tr>
</table>
<a name="GroupProject"><h1 style="padding-top: 7vw; margin-top: -7vw;"></h1></a>
<p style="line-height: 5vw"> <br></p>
<table style="align: center; margin:auto; padding:0; height: auto; width: 75%; table-layout: fixed;">
<tr>
<td style="color: white; font-size: 4vw; padding:0 1vw 0 1vw;">University Group Project App</td>
</tr>
<tr style="color: black; height: 100%">
<td>
<!-- Slideshow container -->
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 1 / 1</div>
<img src="Projects\Group Project\No Image.png" width="75%" height="auto">
<div class="text"></div>
</div>
<div style="text-align:center">
<span class="dot"></span>
</div>
</div>
<br>
<!--The slideshow of key projects/tutorials goes here-->
<script type="text/javascript">
(function() {
init(); //on page load - show first slide, hidethe rest
function init() {
parents = document.getElementsByClassName('slideshow-container');
for (j = 0; j < parents.length; j++) {
var slides = parents[j].getElementsByClassName("mySlides");
var dots = parents[j].getElementsByClassName("dot");
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
dots = document.getElementsByClassName('dot'); //dots functionality
for (i = 0; i < dots.length; i++) {
dots[i].onclick = function() {
slides = this.parentNode.parentNode.getElementsByClassName("mySlides");
for (j = 0; j < this.parentNode.children.length; j++) {
this.parentNode.children[j].classList.remove('active');
slides[j].classList.remove('active-slide');
if (this.parentNode.children[j] == this) {
index = j;
}
}
this.classList.add('active');
slides[index].classList.add('active-slide');
}
}
//prev/next functionality
links = document.querySelectorAll('.slideshow-container a');
for (i = 0; i < links.length; i++) {
links[i].onclick = function() {
current = this.parentNode;
var slides = current.getElementsByClassName("mySlides");
var dots = current.getElementsByClassName("dot");
curr_slide = current.getElementsByClassName('active-slide')[0];
curr_dot = current.getElementsByClassName('active')[0];
curr_slide.classList.remove('active-slide');
curr_dot.classList.remove('active');
if (this.className == 'next') {
if (curr_slide.nextElementSibling.classList.contains('mySlides')) {
curr_slide.nextElementSibling.classList.add('active-slide');
curr_dot.nextElementSibling.classList.add('active');
} else {
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
if (this.className == 'prev') {
if (curr_slide.previousElementSibling) {
curr_slide.previousElementSibling.classList.add('active-slide');
curr_dot.previousElementSibling.classList.add('active');
} else {
slides[slides.length - 1].classList.add('active-slide');
dots[slides.length - 1].classList.add('active');
}
}
}
}
})();
</script>
</td>
</tr>
<tr>
<td style="color: white; font-size: 2vw; padding:0 1vw 0 1vw;"><b>Description:</b></td>
</tr>
<tr>
<td style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;">The aim of this project was to, in a group of 8 people, create an app that would allow the user to create a pub crawl, with options to add/delete pubs, see more information on pubs, filter pubs and favourite pubs and see a Google Maps location of the pub, with all the pub information being in a separate database. The team also had to create a desktop application that was to be used to add to the database. My main role was to create the mobile application, working on the mobile app Testing documentation and Maintenaince documentation, all tasks involved another teammate helping. Majority of the app was created by me because of difficulty moving code to and from myself and my teammate, this taught me the importance of getting solid teamwork instead of continuing with the project and leaving my teammate to sort out the problem. Unfortunately since the app requires access to the database to display anything useful there are no images of the app available working anymore but the code and documents I worked on are included belwo for you to view if desired.</td></td>
</tr>
<tr>
<td style="color: white; padding:0 1vw 0 1vw; font-size: 2vw;"><b>Downloadable Files/Links (if applicable)</b></td>
</tr>
<tr>
<td>
<a href="Projects\Group Project\GroupProject.zip" style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;" download>Group Project ZIP File made in Android Studio</a>
<br />
<a href="Projects\Group Project\testReport\testReport.pdf" target="_blank" style="font-size: 1vw; color: white; padding:0 1vw 1vw;" download>Testing Documentation HTML File</a>
<br />
<a href="Projects\Group Project\maintenanceDoc\maintenanceDoc.pdf" target="_blank" style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;" download>Maintenaince Documentation HTML File</a>
</td>
</tr>
</table>
<a name="GraphicsProject"><h1 style="padding-top: 7vw; margin-top: -7vw;"></h1></a>
<p style="line-height: 5vw"> <br></p>
<table style="align: center; margin:auto; padding:0; height: auto; width: 75%; table-layout: fixed;">
<tr>
<td style="color: white; font-size: 4vw; padding:0 1vw 0 1vw;">Graphics Project</td>
</tr>
<tr style="color: black; height: 100%">
<td>
<!-- Slideshow container -->
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 1 / 3</div>
<img src="Projects\Graphics Assignment\Graphics Project Image 1.PNG" width="75%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 2 / 3</div>
<img src="Projects\Graphics Assignment\Graphics Project Image 2.PNG" width="75%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 3 / 3</div>
<img src="Projects\Graphics Assignment\Graphics Project Image 3.PNG" width="75%" height="auto">
<div class="text"></div>
</div>
<a class="prev">❮</a>
<a class="next">❯</a>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot" ></span>
<span class="dot" ></span>
</div>
</div>
<br>
<!--The slideshow of key projects/tutorials goes here-->
<script type="text/javascript">
(function() {
init(); //on page load - show first slide, hidethe rest
function init() {
parents = document.getElementsByClassName('slideshow-container');
for (j = 0; j < parents.length; j++) {
var slides = parents[j].getElementsByClassName("mySlides");
var dots = parents[j].getElementsByClassName("dot");
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
dots = document.getElementsByClassName('dot'); //dots functionality
for (i = 0; i < dots.length; i++) {
dots[i].onclick = function() {
slides = this.parentNode.parentNode.getElementsByClassName("mySlides");
for (j = 0; j < this.parentNode.children.length; j++) {
this.parentNode.children[j].classList.remove('active');
slides[j].classList.remove('active-slide');
if (this.parentNode.children[j] == this) {
index = j;
}
}
this.classList.add('active');
slides[index].classList.add('active-slide');
}
}
//prev/next functionality
links = document.querySelectorAll('.slideshow-container a');
for (i = 0; i < links.length; i++) {
links[i].onclick = function() {
current = this.parentNode;
var slides = current.getElementsByClassName("mySlides");
var dots = current.getElementsByClassName("dot");
curr_slide = current.getElementsByClassName('active-slide')[0];
curr_dot = current.getElementsByClassName('active')[0];
curr_slide.classList.remove('active-slide');
curr_dot.classList.remove('active');
if (this.className == 'next') {
if (curr_slide.nextElementSibling.classList.contains('mySlides')) {
curr_slide.nextElementSibling.classList.add('active-slide');
curr_dot.nextElementSibling.classList.add('active');
} else {
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
if (this.className == 'prev') {
if (curr_slide.previousElementSibling) {
curr_slide.previousElementSibling.classList.add('active-slide');
curr_dot.previousElementSibling.classList.add('active');
} else {
slides[slides.length - 1].classList.add('active-slide');
dots[slides.length - 1].classList.add('active');
}
}
}
}
})();
</script>
</td>
</tr>
<tr>
<td style="color: white; font-size: 2vw; padding:0 1vw 0 1vw;"><b>Description:</b></td>
</tr>
<tr>
<td style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;">This project was a university assignment where I had to utilise the application Blender to create an animation with the theme 'Aberystwyth goes to mars!". Personally I am not a fan of the outcome of this assignment because it lacks a large amount of detail for the animation to be of good enough standard for me, however this project did provide me some insight into the graphics side of development and shows that I do have some experience with Blender/animation.</td></td>
</tr>
<tr>
<td style="color: white; padding:0 1vw 0 1vw; font-size: 2vw;"><b>Downloadable Files/Links (if applicable)</b></td>
</tr>
<tr>
<td>
<a href="Projects\Graphics Assignment\FullAnimation.blend" style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;" download>Graphics Project BLEND File made in Blender</a>
<br />
<a href="Projects\Graphics Assignment\Documentation-Graphics Assignment.pdf" target="_blank" style="font-size: 1vw; color: white; padding:0 1vw 1vw;" download>Graphics Project Documentation PDF File</a>
<br />
<a href="https://www.youtube.com/watch?v=P33MVzTyf_4" target="_blank" style="font-size: 1vw; color: white; padding:0 1vw 0 1vw;" download>Graphics Project Result YOUTUBE Video</a>
</td>
</tr>
</table>
<a name="ALevelProject"><h1 style="padding-top: 7vw; margin-top: -7vw;"></h1></a>
<p style="line-height: 5vw"> <br></p>
<table style="align: center; margin:auto; padding:0; height: auto; width: 75%; table-layout: fixed;">
<tr>
<td style="color: white; font-size: 4vw; padding:0 1vw 0 1vw;">A Level Project</td>
</tr>
<tr style="color: black; height: 100%">
<td>
<!-- Slideshow container -->
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 1 / 4</div>
<img src="Projects\A Level Project\A Level Project Image 1.PNG" width="75%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 2 / 4</div>
<img src="Projects\A Level Project\A Level Project Image 2.PNG" width="75%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 3 / 4</div>
<img src="Projects\A Level Project\A Level Project Image 3.PNG" width="75%" height="auto">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">Slideshow Image: 4 / 4</div>
<img src="Projects\A Level Project\A Level Project Image 4.PNG" width="75%" height="auto">
<div class="text"></div>
</div>
<a class="prev">❮</a>
<a class="next">❯</a>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot" ></span>
<span class="dot" ></span>
<span class="dot"></span>
</div>
</div>
<br>
<!--The slideshow of key projects/tutorials goes here-->
<script type="text/javascript">
(function() {
init(); //on page load - show first slide, hidethe rest
function init() {
parents = document.getElementsByClassName('slideshow-container');
for (j = 0; j < parents.length; j++) {
var slides = parents[j].getElementsByClassName("mySlides");
var dots = parents[j].getElementsByClassName("dot");
slides[0].classList.add('active-slide');
dots[0].classList.add('active');
}
}
dots = document.getElementsByClassName('dot'); //dots functionality
for (i = 0; i < dots.length; i++) {
dots[i].onclick = function() {
slides = this.parentNode.parentNode.getElementsByClassName("mySlides");
for (j = 0; j < this.parentNode.children.length; j++) {
this.parentNode.children[j].classList.remove('active');