-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
637 lines (534 loc) · 19.2 KB
/
index.html
File metadata and controls
637 lines (534 loc) · 19.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
/* font-family: 'Montserrat', sans-serif; */
font-family: monaco, Consolas, "Lucida Console", monospace;
background-color: #020202;
}
nav {
position: fixed;
top: 0;
left: 0;
width: 40vw;
padding: 1.5rem;
display: flex;
justify-content: space-around;
background-color: rgba(0, 0, 0, 0.15)
}
nav a, span {
text-decoration: none;
color: #ccff55;
font-size: 14px;
text-transform: uppercase;
}
nav :hover {
cursor: pointer;
color: #36c37a;
}
.landing {
height: 90vh;
background-color: black;
color: white;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
animation: fadeIn 2s ease-in-out;
}
a {
text-decoration: none;
}
h1 {
font-size: 4em;
margin: 0;
}
.sections {
padding-top: 5em;
display: flex;
flex-direction: column;
align-items: center;
}
.section {
width: 100%;
padding: 5em 0;
background: #020202;
color: #f2f2f2;
display: flex;
align-items: center;
z-index: 1;
}
.sections :hover {
background-color: rgb(13, 5, 53);
cursor: pointer;
}
.section:nth-child(even) {
flex-direction: row-reverse;
}
.section img {
width: 50%;
}
.section-text {
margin-left: 5em;
margin-right: 5em;
width: 40%;
}
.section h2 {
margin-top: 0;
}
.pills {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 1em;
}
.pill {
color: white;
padding: 0.5em 1em;
border-radius: 20px;
font-size: 0.9em;
display: inline-block;
}
.pill:nth-child(3n) {
background-color: #6a11cb;
}
.pill:nth-child(3n+1) {
background-color: #2575fc;
}
.pill:nth-child(3n+2) {
background-color: #ff4081;
}
.animation-container {
width: 100vw;
display: flex;
flex-direction: row;
justify-content:center;
/* padding: 100px; */
}
.circle {
width: 150px;
height: 150px;
border-radius: 50%;
opacity: 0.7;
filter: blur(10px);
z-index: 0;
color: black;
}
.circle1 {
background-color: rgb(240, 102, 102);
translate: -50px 150px;
/* left: 450px;
top: 275px; */
mix-blend-mode: screen;
animation: pulse2 2s ease 0.5s infinite;
}
.circle2 {
background-color: rgb(151, 151, 243);
translate: 50px;
/* left: 500px;
top: 275px; */
mix-blend-mode: screen;
animation: pulse2 2s ease 1s infinite;
}
.circle3 {
background-color: rgb(128, 253, 128);
translate: 0px -75px;
/* left: 475px;
top: 350px; */
mix-blend-mode: screen;
animation: pulse2 2s ease 0s infinite;
}
.box {
margin-left: 200px;
/* margin-right: 100px; */
font-size: 1.4em;
}
.title {
left: 20px;
}
@keyframes pulse2 {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}
.cube {
width: 100px;
height: 100px;
position: relative;
transform-style: preserve-3d;
animation: rotateCube 5s infinite linear;
}
.face {
position: absolute;
width: 100px;
height: 100px;
border: 2px solid #61dafb;
box-sizing: border-box;
}
.front { transform: translateZ(50px); background: rgba(97, 218, 251, 0.7);}
.back { transform: rotateY(180deg) translateZ(50px); background: rgba(97, 218, 251, 0.7);}
.left { transform: rotateY(-90deg) translateZ(50px); background: rgba(251, 97, 202, 0.7); }
.right { transform: rotateY(90deg) translateZ(50px); background: rgba(251, 97, 202, 0.7); }
.top { transform: rotateX(90deg) translateZ(50px); background: rgba(241, 251, 97, 0.7);}
.bottom { transform: rotateX(-90deg) translateZ(50px); background: rgba(241, 251, 97, 0.7);}
@keyframes rotateCube {
from {
transform: rotateX(0) rotateY(0);
}
to {
transform: rotateX(360deg) rotateY(360deg);
}
}
.popup {
display: none; /* Hidden by default */
position: fixed;
z-index: 3;
left: 0;
top: 0;
width: 100%;
height: 80%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.popup-content {
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
/* border: 1px solid #888; */
width: 80%; /* Could be more or less, depending on screen size */
text-align: center;
color:black;
}
.close-btn {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close-btn:hover,
.close-btn:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.contact-buttons {
margin-top: 20px;
}
.contact-button {
display: inline-block;
margin: 10px;
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #0073b1; /* Default to LinkedIn blue */
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}
.contact-button i {
margin-right: 10px;
}
.contact-button:hover {
background-color: #005582;
}
.contact-button:nth-child(2) {
background-color: #e4405f; /* Instagram color */
}
.contact-button:nth-child(2):hover {
background-color: #b82d48;
}
.contact-button:nth-child(3) {
background-color: #d44638; /* Email color */
}
.contact-button:nth-child(3):hover {
background-color: #a6302b;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
/* .btn {
background-color: rgb(13, 5, 53);
color: white;
border-radius: 25%;
text-align: center;
} */
.popup {
display: none;
position: fixed;
z-index: 2;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
}
.popup-content {
/* background-color: #fefefe; */
margin: 15% auto;
padding: 20px;
width: 50vw;
position: relative;
}
.close-btn {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.close-btn:hover,
.close-btn:focus {
color: white;
text-decoration: none;
cursor: pointer;
}
.carousel-container {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel {
display: flex;
transition: transform 0.5s ease-in-out;
}
.carousel-item {
min-width: 100%;
box-sizing: border-box;
}
.carousel-item img {
width: 100%;
height: auto;
display: block;
}
button.prev,
button.next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5);
border: none;
color: white;
padding: 10px;
cursor: pointer;
border-radius: 50%;
}
button.prev {
left: 10px;
}
button.next {
right: 10px;
}
button.prev:hover,
button.next:hover {
background-color: rgba(0, 0, 0, 0.7);
}
</style>
</head>
<body>
<div class="landing">
<nav>
<!-- <a href="https://twitter.com/theunknowman_80">Follow Me</a>
<span> -->
<!-- <span><a href="calculator.html">RESUME</a></span> -->
<!-- <span><a href="artGallery.html">PAINT</a></span>
<span><a href="artGallery.html">PASTWORK </a></span> -->
<!-- <span><a id="openPopupBtn">CONTACT</a> </span>
<div id="popup" class="popup">
<div class="popup-content">
<span class="close-btn" id="closePopupBtn">×</span>
<div class="contact-buttons">
<a href="https://www.linkedin.com/in/micaela-blank-1a67b41b0/" target="_blank" class="contact-button">
<i class="fab fa-linkedin"></i> LinkedIn
</a>
<a href="https://instagram.com/theblanksloth?igshid=YmMyMTA2M2Y=" class="instagram"><i class="bi bi-instagram"></i></a>
<a href="https://www.instagram.com/your-profile" target="_blank" class="contact-button">
<i class="fab fa-instagram"></i> Instagram
</a>
<a href="mailto:micaelablank@gmail.com" class="contact-button">
<i class="fas fa-envelope"></i> Email
</a>
</div>
</div>
</div> -->
<a href="indexOld.html">OLDWEBSITE</a>
<a id="openCarouselBtn" class="btn">How I work</a>
<!-- <a href="creativeCode.html">CREATIVECODE</a> -->
<!-- <span class="large-paragraph" id="large-paragraph" >CREATIVECODE ANIMATE FICHCALULATOR PAINT PASTWORK OLDWEBSITE </span> -->
</nav>
<!-- <div class="animation-container">
-->
<div class="cube">
<div class="face front"></div>
<div class="face back"></div>
<div class="face left"></div>
<div class="face right"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<div class="box" ><h2>Micaela Blank</h2><p>Portfolio</p></div>
<div class="box">
<div class="circle circle1"></div>
<div class="circle circle2"></div>
<div class="circle circle3"></div>
</div>
<!-- </div> -->
</div>
</div>
<div id="carouselPopup" class="popup">
<div class="popup-content">
<span class="close-btn" onclick="closeCarousel()">×</span>
<div class="carousel-container">
<div class="carousel">
<div class="carousel-item"><img src="./assets/img/my_work_map/1.png" alt="Image 1"></div>
<div class="carousel-item"><img src="./assets/img/my_work_map/2.png" alt="Image 2"></div>
<div class="carousel-item"><img src="./assets/img/my_work_map/3.png" alt="Image 3"></div>
<div class="carousel-item"><img src="./assets/img/my_work_map/4.png" alt="Image 4"></div>
<div class="carousel-item"><img src="./assets/img/my_work_map/5.png" alt="Image 5"></div>
<div class="carousel-item"><img src="./assets/img/my_work_map/6.png" alt="Image 6"></div>
<div class="carousel-item"><img src="./assets/img/my_work_map/7.png" alt="Image 7"></div>
<div class="carousel-item"><img src="./assets/img/my_work_map/8.png" alt="Image 8"></div>
<div class="carousel-item"><img src="./assets/img/my_work_map/9.png" alt="Image 9"></div>
</div>
<button class="prev" onclick="showPrevImage()">❮</button>
<button class="next" onclick="showNextImage()">❯</button>
</div>
</div>
</div>
<div class="sections">
<div class="section" onclick="window.location.href='./saturation.html'" >
<img src="./assets/img/saturation/image10.jpg" alt="Portfolio Image 1">
<div class="section-text">
<h2>Saturation</h2>
<p>Saturation is an interactive art installation, exhibited at the UNSW 2023 Annual Exhibiton. Utilising a wide array of creative technologies across animation, programming and AI software, "Saturation" was made to capture the specific feelings being in awe and overwhelmed with technology.
We have access to more colours, storytelling, people and information than ever before. Our attention is locked in a flurry of pixels and sounds which keep us entertained and over-stimulated. There are elements which speak to human vanity, sensory overload, the illusion of control and total immersion within a space.
</p>
<div class="pills">
<div class="pill">Interactive Installation</div>
<div class="pill">CGI from Camera input</div>
<div class="pill">JavaScript</div>
<div class="pill">Machine Learning Body tracking</div>
<div class="pill">AI</div>
</div>
</div>
</div>
<div class="section" onclick="window.location.href='https://www.youtube.com/watch?v=DQghuavrfYg'">
<img src="./assets/img/Extra_lofi.png" alt="Portfolio Image 2">
<div class="section-text">
<h2>T&Pm Extra Lecture Lounge</h2>
<p>Working with Kopi Su, a creative digital studio, I lead the development of the Extra Chewing gum AI lecture lounge website. This is an AI lofi music generator made to add light, adaptable music to the backgrounds of lectures to increase focus, retention and productivity for neurodiverse students.</p>
<div class="pills">
<div class="pill">React</div>
<div class="pill">Tailwind</div>
<div class="pill">Figma</div>
</div>
</div>
</div>
<div class="section" onclick="window.location.href='./calculator.html'">
<img src="./assets/img/talia_art_graph_money_plotter.png" alt="Portfolio Image 3">
<div class="section-text">
<h2>Fich Calculator</h2>
<p>My dear talented sister had a problem with how to value her artwork, an issue many artists have. I plotted, graphed and created a calculator that removes the guess work.</p>
<div class="pills">
<div class="pill">Graphing</div>
<div class="pill">HTML/CSS</div>
<div class="pill">Javascript</div>
</div>
</div>
</div>
<div class="section" onclick="window.location.href='./set/index.html'">
<img src="./assets/img/setFull.png" alt="Portfolio Image 3">
<div class="section-text">
<h2>Set the Card Game (for colour theory nerds)</h2>
<p>I recreated the game that I dominate at game night with my family so that my sister's boyfriend can practice without me as he lives overseas.
I then went a step further and altered the game because I am a colour theory nerd.</p>
<div class="pills">
<div class="pill">HTML/CSS</div>
<div class="pill">Javascript</div>
<div class="pill">Colour Theory</div>
</div>
</div>
</div>
<div class="section" onclick="window.location.href='./assets/portfolio_attempt/portfolio webversion /Astart.html'">
<img src="./assets/img/space.png" alt="Portfolio Image 3">
<div class="section-text">
<h2>Levels of Consciousness</h2>
<p>My first creative coding project. What is consciousness? How did minds as complex as ours develop? What would those steps look like? All of these questions reimagined in an interactive narrative made for the web.
</p>
<div class="pills">
<div class="pill">Adobe animate</div>
<div class="pill">Html</div>
<div class="pill">Procreate</div>
</div>
</div>
</div>
<div class="section" onclick="window.location.href='./composition.html'">
<img src="./assets/img/Composition.png" alt="Portfolio Image 3">
<div class="section-text">
<h2>Mondrian's Composition</h2>
<p>In my art practice, I have developed a unique program that generates compositions based on the Fibonacci sequence,
drawing inspiration from Piet Mondrian's iconic "Composition II in Red, Blue, and Yellow."
This program leverages the mathematical harmony of the Fibonacci sequence to create balanced and aesthetically pleasing artworks
that mimic Mondrian's distinctive style.
</p>
<div class="pills">
<div class="pill">HTML/CSS</div>
<div class="pill">Javascript</div>
<div class="pill">Colour Theory</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", () => {
const popup = document.getElementById("popup");
const openPopupBtn = document.getElementById("openPopupBtn");
const closePopupBtn = document.getElementById("closePopupBtn");
openPopupBtn.addEventListener("click", () => {
popup.style.display = "block";
});
closePopupBtn.addEventListener("click", () => {
popup.style.display = "none";
});
window.addEventListener("click", (event) => {
if (event.target == popup) {
popup.style.display = "none";
}
});
});
let currentIndex = 0;
const carousel = document.querySelector('.carousel');
const items = document.querySelectorAll('.carousel-item');
function showNextImage() {
currentIndex = (currentIndex + 1) % items.length;
updateCarousel();
}
function showPrevImage() {
currentIndex = (currentIndex - 1 + items.length) % items.length;
updateCarousel();
}
function updateCarousel() {
carousel.style.transform = `translateX(-${currentIndex * 100}%)`;
}
function openCarousel() {
document.getElementById('carouselPopup').style.display = 'block';
}
function closeCarousel() {
document.getElementById('carouselPopup').style.display = 'none';
}
document.getElementById('openCarouselBtn').addEventListener('click', openCarousel);
</script>
</body>
</html>