-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1017 lines (814 loc) · 41.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
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="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="indexstyleporto.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<style>
/**
#BFBFBF window bg color
#01007A window bar color
#4ED8B4 arizona
**/
* {
box-sizing: border-box;
}
.collapsible {
background-color: rgb(47, 54, 94);
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.collapsible2 {
background-color: rgb(0, 0, 0);
color: white;
cursor: pointer;
padding: 10px;
margin-left: 1px;
margin-right: 40px;
width: 100%;
text-align: left;
outline: none;
font-size: 15px;
}
.content1 {
padding: 18px;
display: none;
overflow: hidden;
background-color: #000000;
margin-bottom: 0px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: rgb(255, 255, 255);
}
.content2 {
padding: 0 18px;
display: none;
overflow: hidden;
background-color: #000000;
margin-bottom: 0px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: rgb(213, 252, 255);
}
.active, .collapsible:hover {
background-color: #555;
}
.collapsible2:hover {
background-color: #444444;
}
.active, .collapsible {
background-color: #000000;
}
.about-section {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.about-section div {
flex: 1;
}
.about-section img {
margin-left: 20px;
max-width: 200px;
align-self: flex-start;
}
.container {
display: block;
min-height: 20px;
margin: auto;
}
.notepad {
background: #BFBFBF;
display: block;
min-height: 100px;
width: 100%;
padding: 4px;
-webkit-box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.75);
box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.75);
border: 1.4px solid white;
}
.notepad-bar {
width: 100%;
background: #01007A;
height: 23px;
}
.notepad-title {
color: white;
letter-spacing: .5px;
word-spacing: .5px;
padding-left: 5px;
float: left;
font-weight: 600;
}
.notepad-minimize,
.notepad-maximize,
.notepad-exit {
height: 100%;
display: block;
float: right;
padding-top: 3px;
padding-bottom: 3px;
}
.notepad-exit {
padding-left: 5px;
padding-right: 5px;
}
.button-minimize,
.button-maximize,
.button-exit {
background: #BFBFBF;
height: 100%;
width: 19px;
border-right: 2px solid black;
border-bottom: 2px solid black;
border-left: 1px solid white;
border-top: 1px solid white;
}
.button-exit {
font-size: 55%;
margin: auto;
text-align: center;
}
.notepad-icon {
height: 100%;
float: left;
padding-top: 1px;
}
body {
}
.notepad-icon img {
object-fit: fill;
display: block;
height: 19px;
width: 19px;
}
.icon-maximize {
border-bottom: 1px solid black;
border-top: 3px solid black;
border-left: 1px solid black;
border-right: 1px solid black;
height: 80%;
width: 80%;
display: block;
margin: auto;
margin-top: 1.2px;
}
.icon-minimize {
border-bottom: 2px solid black;
width: 80%;
height: 80%;
display: block;
marigin: auto;
margin-left: 1.5px;
}
.notepad-settings {
width: 100%;
float: left;
display: inline-flex;
margin-left: 10px;
margin-bottom: 5px;
}
.settings-text {
padding-right: 15px;
}
.underline {
text-decoration: underline;
}
.notepad-content {
height: auto;
width: auto;
background: white;
clear: both;
border-radius: 1px;
border: 1.2px solid black;
overflow: auto;
padding: 5px;
}
img {
height: auto;
width: auto\9;
/* ie8 */
}
.slideshow {
position: relative;
}
.slide {
display: none;
}
.slide.active {
display: block;
}
.button {
display: inline-block;
padding: 10px;
background: #ccc;
cursor: pointer;
}
</style>
</head>
<body >
<div style="background-color:rgb(34, 38, 75)" class="crt" id="myDIV">
<nav>
<div
style="display: flex; align-items: center; justify-content: space-between; margin: 0.4rem; width: 100%;">
<div style="display: flex; align-items: center;">
<button style="background-color:rgb(47, 54, 94); width: 11rem;" id="ASong" id="startButton"
onClick="poop()">
pleasant music
<img src="media/600px-Simple_Music.svg.png" height="15" width="15" style="margin-top: 0em;">
</button>
<button onclick="ToggleCRT()" style=" background-color: rgb(47, 54, 94);">toggle crt shader</button>
</div>
<div class="dropdown" style="display: flex; align-items: center;">
<button class="dropbtn">
<img src="media/dropdown.png" height="25" width="25" style="margin-right: 1em;">
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="home.html">Home</a>
<a href="openSAM.html">opensam</a>
<a href="webcomic.html">webcomic</a>
<a href="PPL.html">PPL-Generator</a>
</div>
</div>
</div>
</nav>
</div>
<audio id="poopie" src="music\Mussorgsky - Pictures at an Exhibition - Promenade.mp3"></audio>
<audio id="tapeButton" src="music\button.mp3"></audio>
<div style="display: flex; margin: 0.0rem; align-items: center; justify-content: space-between; background-color:rgb(47, 54, 94); margin-top: -1px;"
id="playerControls">
<h1 style="margin-left: 1rem;"> PORTFOLIO WEBSITE - RICHARD DEN BAKKER</h1>
<div style="display: flex;">
<button onClick="buttonSVX()" id="instagramButton" style="margin-right: 0.2rem;">
<img src="media\media\socials\icons8-instagram-30.png" height="20" width="20">
</button>
<button onClick="buttonSVX()" id="artstationButton" style="margin-right: 0.2rem;">
<img src="media\media\socials\icons8-artstation-32 (1).png" height="20" width="20">
</button>
<button onClick="buttonSVX()" id="itchButton" style="margin-right: 0.4rem;">
<img src="media\media\socials\icons8-itch-io-48.png" height="20" width="20">
</button>
</div>
</div>
<div class="button-container" id="playerControls3"
style="display: flex; justify-content: flex-end; background-color: rgb(47, 54, 94); margin-bottom: -5px; margin-left: -1px; margin-right: 1px;">
<button onClick=" buttonSVX()" class="collapsible-btn">3D PROJECTS</button>
<button onClick="buttonSVX()" class="collapsible-btn">2D PROJECTS</button>
<button onClick="buttonSVX()" class="collapsible-btn">SKETCHES</button>
<button onClick="buttonSVX()" class="collapsible-btn">ABOUT</button>
</div>
<div class="content" >
<div class="container" style="margin-top: 15px; margin-bottom: 20px;">
<div class="notepad">
<div class="notepad-bar">
<div class="notepad-icon">
</div>
<div class="notepad-title">3D Projects - onekickrick</div>
<div class="notepad-exit">
<div class="button-exit">❌</div>
</div>
<div class="notepad-maximize">
<div class="button-maximize">
<div class="icon-maximize"></div>
</div>
</div>
<div class="notepad-minimize">
<div class="button-minimize">
<div class="icon-minimize"></div>
</div>
</div>
</div> <!-- notepad bar -->
<div class="notepad-settings" style="color: aliceblue;">
<div class="settings-text"><span class="underline">F</span>ile</div>
<div class="settings-text"><span class="underline">E</span>dit</div>
<div class="settings-text"><span class="underline">S</span>earch</div>
<div class="settings-text"><span class="underline">H</span>elp</div>
<a class="prev" onclick="plusSlides(-1, 2)">❮</a>
<a class="next" onclick="plusSlides(1, 2)">❯</a>
</div><!-- notepad settings -->
<div class="notepad-content" style="background-color:rgb(0, 0, 0)">
<div class="slideshow-container" style="background-color:rgb(0, 0, 0)">
<div class="mySlides3">
<button type="button" class="collapsible2" >GODSPEAKER</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
gameready revolver asset, a scifi vampire-hunters revolver made for "project vrij" at the HKU. designed in procreate, modelled and rigged in blender, textured in Substance painter
</p>
</div>
<img src="media\portfolio\revolverrevolve.gif" style="width:90%">
<img src="media\portfolio\revolver.JPG" style="width:70%">
<img src="media\portfolio\revolver.gif" style="width:50%">
<img src="media\portfolio\revolverreload.gif" style="width:60%">
</div>
<div class="mySlides3">
<button type="button" class="collapsible2" >MANDATE OF HEAVEN</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
gameready Shotgun asset, a scifi vampire-hunters shotgun made for "project vrij" at the HKU. designed in procreate, modelled and rigged in blender, textured in Substance painter
</p>
</div>
<img src="turnaround.gif" style="width:100%">
<img src="media\portfolio\holyshotgun.JPG" style="width:100%">
<img src="shotgun revolve.gif" style="width:70%">
<img src="shotgunshoot.gif" style="width:70%">
<img src="shotgun eject.gif" style="width:70%">
</div>
<div class="mySlides3">
<button type="button" class="collapsible2" >PROSTHETIC ARMS</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
medieval styled robotic arm 3D model, made for "project vrij" at the HKU. designed in procreate, modelled and rigged in blender, textured in Substance painter
</div>s
<img src="revolvehands.gif" style="width:90%">
</p>
</div>
</div>
<div class="mySlides3">
<button type="button" class="collapsible2" >BMEX</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
BMX Robot for Mechjam 2024, modeled and rigged in blender.
</div>
<img src="media\bmxbot.gif" style="width:60%">
<img src="media\bikeanim2.gif" style="width:50%">
<img src="media\media\tailwhip2.gif" style="width:50%">
<img src="media\media\boostjump.gif" style="width:50%">
<img src="media\media\wheelie3.gif" style="width:50%">
<img src="media\media\drift.gif" style="width:50%">
<img src="media\media\tutorial test.gif" style="width:50%">
</div>
<div class="mySlides3">
<button type="button" class="collapsible2" >BMEX ALL STAR</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
all-star Basketball Mech for my bmx action adventure platformer "bmex"
</div>
<img src="media\media\Basketball3.gif" style="width:50%">
<img src="Screenshot 2024-08-09 185637.png" style="width:50%">
<img src="Screenshot 2024-08-11 223302.png" style="width:50%">
</div>
<div class="mySlides3">
<button type="button" class="collapsible2" >GOLDEN SUN</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
Environment design assignment, models made in blender, shader and programming in unity.
</div>
<img src="media\media\updates.gif" style="width:80%">
<img src="media\media\updates2.gif" style="width:80%">
<img src="media\media\glimbo.gif" style="width:80%">
</div>
<div class="mySlides3">
<button type="button" class="collapsible2" >TV MAN</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
TV man character, made for a short video, modelled in blender
</p>
</div>
<img src="moving head.gif" style="width:90%">
<img src="ezgif-ds-759cc5c146.gif" style="width:90%">
</div>
<div class="mySlides3">
<button type="button" class="collapsible2" >SUPERNIELS</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
this was an attempt to turn an inside joke into a short film, its about a superhero named niels, who puts out a housefire.
modelled, rigged and animated in blender, textured in asesprite.
</div>
<img src="ezgif-4-4cedaa917f.gif" style="width:90%">
<hr color=rgb(18, 39, 26)>
<img src="ezgif-4-56cbbfe39f.gif" style="width:90%">
</div>
</div>
</div>
</p>
</div>
</div>
</div>
<div class="content">
<div class="container" style="margin-top: 15px; margin-bottom: 20px;">
<div class="notepad">
<div class="notepad-bar">
<div class="notepad-icon">
</div>
<div class="notepad-title">2D Projects - onekickrick</div>
<div class="notepad-exit">
<div class="button-exit">❌</div>
</div>
<div class="notepad-maximize">
<div class="button-maximize">
<div class="icon-maximize"></div>
</div>
</div>
<div class="notepad-minimize">
<div class="button-minimize">
<div class="icon-minimize"></div>
</div>
</div>
</div>
<div class="notepad-settings"style="color: aliceblue;">
<div class="settings-text"><span class="underline">F</span>ile</div>
<div class="settings-text"><span class="underline">E</span>dit</div>
<div class="settings-text"><span class="underline">S</span>earch</div>
<div class="settings-text"><span class="underline">H</span>elp</div>
<a class="prev" onclick="plusSlides(-1, 1)">❮</a>
<a class="next" onclick="plusSlides(1, 1)">❯</a>
</div>
<div class="notepad-content" style="background-color:rgb(0, 0, 0)">
<div>
<div class="slideshow-container" style="background-color:rgb(0, 0, 0)">
<div class="mySlides2">
<img src="media\portfolio\infernum1.png" style="width:50%">
<hr color=rgb(18, 39, 26)>
<div class="text" style="background-color: rgb(0, 0, 0);">
<button type="button" class="collapsible2" >INFERNUM EX MACHINA</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
Infernum ex Machina (Hell in the Machine) is an ongoing worldbuilding project where I focus on creating a story which i use to illustrate scenes from. In short, the world revolves around a strange event that takes places where anxious children would wake up with a nightmare creature bonded to them. the story revolves around how the world handles these changes to society</p>
</div>
</div>
</div>
<div class="mySlides2">
<img src="media\portfolio\infernum2.png" style="width:50%">
<div class="text" style="background-color: rgb(0, 0, 0);">
<button type="button" class="collapsible2" >INFERNUM EX MACHINA</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
Infernum ex Machina (Hell in the Machine) is an ongoing worldbuilding project where I focus on creating a story which i use to illustrate scenes from. In short, the world revolves around a strange event that takes places where anxious children would wake up with a nightmare creature bonded to them. the story revolves around how the world handles these changes to society</p>
</div>
</div>
</div>
</div>
<div class="mySlides2">
<img src="media\portfolio\chroma1w9.png" style="width:70%">
</div>
<div class="mySlides2">
<img src="media\portfolio\cyberpunk.png" style="width:50%">
</div>
</div>
</div>
</div>
</p>
</div> <!-- notepad content -->
</div> <!-- notepad -->
</div> <!-- container -->
<div class="content">
<div class="container" style="margin-top: 15px; margin-bottom: 20px;">
<div class="notepad">
<div class="notepad-bar">
<div class="notepad-icon">
</div>
<div class="notepad-title">portfolio - onekickrick</div>
<div class="notepad-exit">
<div class="button-exit">❌</div>
</div>
<div class="notepad-maximize">
<div class="button-maximize">
<div class="icon-maximize"></div>
</div>
</div>
<div class="notepad-minimize">
<div class="button-minimize">
<div class="icon-minimize"></div>
</div>
</div>
</div> <!-- notepad bar -->
<div class="notepad-settings"style="color: aliceblue;">
<div class="settings-text"><span class="underline">F</span>ile</div>
<div class="settings-text"><span class="underline">E</span>dit</div>
<div class="settings-text"><span class="underline">S</span>earch</div>
<div class="settings-text"><span class="underline">H</span>elp</div>
<a class="prev" onclick="plusSlides(-1, 0)">❮</a>
<a class="next" onclick="plusSlides(1, 0)">❯</a>
</div><!-- notepad settings -->
<div class="notepad-content">
<div>
<div class="slideshow-container">
<div class="mySlides1">
<img src="media\portfolio\s1.jpg" style="width:50%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s17.png" style="width:50%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s2.png" style="width:40%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s18.png" style="width:40%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s3.jpg" style="width:50%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s4.png" style="width:70%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s6.png" style="width:50%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s9.png" style="width:40%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s10.png" style="width:40%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s11.png" style="width:40%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s12.png" style="width:40%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s13.png" style="width:50%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s14.png" style="width:60%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s15.jpg" style="width:60%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s16.png" style="width:40%">
</div>
<div class="mySlides1">
<img src="imagecool.png" style="width:50%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s19.png" style="width:50%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s20.png" style="width:60%">
</div>
<div class="mySlides1">
<img src="media\portfolio\s21.png" style="width:60%">
</div>
<br>
<button type="button" class="collapsible2" >Sketch Process</button>
<div class="content1" style=" border: 5px;" >
<p style="text-align: left;">
I usually start with a blank canvas, not always knowing what I'm going to draw. I focus on getting something down on paper, making an effort to draw everything in one go while being mindful of the lines I create. If I'm not satisfied or want a cleaner result, I'll refine the original sketch by drawing over it. <h1> Motivation</h1> My best sketches are those where I manage to create scenes that convey a small story or idea. These pieces go beyond just being visually appealing; they capture a moment, emotion, or concept that resonates with the viewer. Whether it’s a character in the midst of an action or a landscape that hints at a larger narrative, I strive to infuse my drawings with a sense of purpose and meaning. This storytelling element is what makes sketches stand out, as they invite the viewer to engage with the artwork on a deeper level, imagining the story behind the scene.
<h1>device: iPad</h1> <h1>software: Procreate</h1></p>
</div>
</div>
</div>
</div>
</p>
</div> <!-- notepad content -->
</div> <!-- notepad -->
</div> <!-- container -->
</div>
<div class="content" >
<div class="about-section" style="background-color: rgb(0, 0, 0); margin-bottom: 20px; margin-top: 20px; color: white; border: thick double rgb(83, 96, 171); border-width: 3px;" >
<div>
<h1 style="text-align: left; font-size: 2em; margin-left: 22px; ">ABOUT ME</h1>
<p style="text-align: left; margin-left: 22px;">Hello, I'm Rick, a 2D illustrator and 3D generalist. I've been passionate about art since I was a kid, and illustration has always been my creative outlet. Right now, I'm focusing on improving my skills in 3D art, particularly 3D modeling, while continuing to develop my 2D illustration skills. Eventually, I'd love to find a role in the industry as a 3D prop or character artist, or as a 2D illustrator or concept artist.</p>
</div>
<img src="media/portraitsmall.png" alt="Portrait">
</div>
<hr color="black">
<button type="button" class="collapsible2">BACKGROUND</button>
<div class="content1"style="border: thick double rgb(83, 96, 171); border-width: 3px;">
<h2 style="text-align: left; font-size: 1.75em;">Background</h2>
My journey in art began at a young age. What started as a simple distraction soon grew into a deep passion, inspired by friends and online artwork. I began drawing and never stopped. In high school, I enrolled in an optional course at the "Koninklijke Academie van Beeldende Kunsten" in The Hague, which pushed me further toward pursuing art professionally. Initially, I studied product design at The Hague University of Applied Sciences, but I felt it didn't challenge me creatively. After my second year, I decided to transfer to the "Hogeschool voor de Kunsten Utrecht," where I'm currently a second-year Game Art student.</p>
<img src="media\media\logos2.png" alt="Portrait">
<br>
<br>
</div>
<button type="button" class="collapsible2">INSPIRATION</button>
<div class="content1" style="border: thick double rgb(83, 96, 171); border-width: 3px;" >
<h2 style="text-align: left; font-size: 1.75em;">Inspirations</h2>
<p style="text-align: left;">
My inspirations are drawn from a mix of different worlds and mediums, all of which deeply influence my work. The intricate storytelling of 90s anime and the artistic mastery of creators like Katsuhiro Otomo and Kim Jung Gi have shaped my visual style, pushing me to explore complex characters and dynamic scenes. I’m also captivated by the works of fiction from authors like Stephen King, H.P. Lovecraft, Neil Gaiman, and Orson Scott Card’s Speaker for the Dead.These stories fuel my imagination, inspiring me to create narratives that blur the line between reality and the surreal.
<hr color="black">Games like Dark Souls and an endless list of indie media further feed my creativity, offering unique perspectives and challenging the conventional. But perhaps my greatest inspiration comes from the people around me—friends and fellow creators who constantly push the boundaries of what’s possible.<hr color="black">These influences lead me to a fascination with distorting reality, twisting it to reveal hidden wonders. Through my art, I strive to peel back the layers of the mundane, exposing the extraordinary and the bizarre. My goal is to invite viewers to see the world through a different, more whimsical lens, where the ordinary becomes something truly magical.</p>
</div>
<button type="button" class="collapsible2">MEDIUMS</button>
<div class="content1" style="border: thick double rgb(83, 96, 171); border-width: 3px;">
<h2 style="text-align: left; font-size: 1.75em; margin-left: 10px; margin-top: 10px;">Mediums</h2>
<p style="text-align: left;"> I mainly create 2D digital art using Procreate, Adobe Photoshop, and Aseprite. For illustrations, I stick to industry-standard tools like Procreate and Photoshop, while Aseprite adds a unique pixel art style to my work. In 3D, I use Blender and Substance Painter to create detailed, realistic models, with Aseprite also helping to add a stylized touch to my 3D pieces. Along with software, I work on an iPad and a Huion Kamvas Pro 16. Outside of visual art, I’m into game programming with Visual Studio and C#, as well as web development using Java, CSS, and HTML.</p>
<img src="media\logos.png" alt="Portrait">
<br>
<br>
</div>
<button type="button" class="collapsible2">WEBSITE</button>
<div class="content1" style="border: thick double rgb(83, 96, 171); border-width: 3px;" >
<h2 style="text-align: left; font-size: 1.75em;">About This Website</h2>
<p style="text-align: left;">This website was built from scratch using HTML, CSS, and JavaScript to showcase my portfolio. It is hosted on GitHub Pages.
Due to limited resources, I haven't been able to test the site on multiple devices, so please note that it is not optimized for mobile use. For the best experience, I recommend viewing it in Chrome using a desktop. If you encounter any issues or have any questions, feel free to reach out to me at <a href="mailto:[email protected]">[email protected]
</a></p>
<br>
Known problems: text displays incorrectly using firefox;
</div>
<br>
<br>
</div>
</div>
</div>
</div>
<div>
<center>
<h1>music credits: Mussorgsky - Pictures at an Exhibition</h1>
<a href="https://www.instagram.com/oxyhadron/">this website was created by Rick den Bakker</a>
</center>
</div>
<div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
<script>
var coll = document.getElementsByClassName("collapsible2");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
<script>
let slideIndex = [1, 1, 1, 1];
let slideId = ["mySlides1", "mySlides2", "mySlides3", "mySlides4"];
function showInitialSlides() {
for (let i = 0; i < slideId.length; i++) {
showSlides(1, i);
}
}
function plusSlides(n, no) {
showSlides(slideIndex[no] += n, no);
}
function showSlides(n, no) {
let i;
let x = document.getElementsByClassName(slideId[no]);
if (n > x.length) { slideIndex[no] = 1 }
if (n < 1) { slideIndex[no] = x.length }
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex[no] - 1].style.display = "block";
}
// Initialize slides for all slideshows
document.addEventListener('DOMContentLoaded', (event) => {
showInitialSlides();
});
</script>
<script>
// Get a reference to the button element
const instagramButton = document.getElementById("instagramButton");
const spotifyButton = document.getElementById("spotifyButton");
const steamButton = document.getElementById("steamButton");
const artstationButton = document.getElementById("artstationButton");
const YoutubeButton = document.getElementById("YoutubeButton");
const TwitterButton = document.getElementById("TwitterButton");
const itchButton = document.getElementById("itchButton");
// Add a click event listener to the button
itchButton.addEventListener("click", function () {
// Redirect to the itch.io website
window.location.href = "https://oxyhadron.itch.io/";
});
instagramButton.addEventListener("click", function () {
window.location.href = "https://www.instagram.com/oxyhadron/";
});
spotifyButton.addEventListener("click", function () {
window.location.href = "https://open.spotify.com/user/b8st4w63ufri0003m7unehml1?si=dcfc7fe777974bbf&nd=1";
});
steamButton.addEventListener("click", function () {
window.location.href = "https://steamcommunity.com/id/oxyhadron";
});
artstationButton.addEventListener("click", function () {
window.location.href = "https://www.artstation.com/oxyhadron";
});
YoutubeButton.addEventListener("click", function () {
window.location.href = "https://www.youtube.com/@oxyhadron1120/about";
});
TwitterButton.addEventListener("click", function () {
window.location.href = "https://twitter.com/0xyhadron";
});
</script>
<script>
function ToggleCRT() {
var element = document.getElementById("myDIV");
element.classList.toggle("crt");
}
</script>
<script>
var x = document.getElementById("myAudio");
var b = document.getElementById("tapeButton");
var c = document.getElementById("poopie");
function playAudio() {
x.play();
}
function buttonSVX() {
b.play();
}
function poop() {
c.play();
}
function pauseAudio() {
x.pause();
}
</script>
<script>
var x = document.getElementById("myAudio");
function getCurTime() {
x.currentTime = x.duration;
}
</script>
<script>
var audio = document.getElementById("myAudio");
var image = document.getElementById("myImage");
var spol2 = document.getElementById("spool2");
audio.addEventListener("timeupdate", function () {
var currentTime = (audio.currentTime / audio.duration); // Get the current playtime in seconds
// Calculate the desired size of the image based on the current playtime
var newSize = currentTime * 250 + 250 + "px";
var newSize2 = currentTime * -250 + 500 + "px";
// Apply the new size to the image
image.style.width = newSize;
spol2.style.width = newSize2;
});
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
var collapsibleButtons = document.querySelectorAll(".collapsible-btn");
var contents = document.querySelectorAll(".content");
// Show the first content section by default
contents[0].style.display = "block";
collapsibleButtons.forEach(function (button, index) {
button.addEventListener("click", function () {
contents.forEach(function (content, contentIndex) {