-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexOLD.html
657 lines (575 loc) · 30.2 KB
/
indexOLD.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paradis</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="home.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
</head>
<main>
<header class="nav-down">
<style>
header {
background: #131313;
height: 100px;
position: fixed;
top: 0;
transition: top 0.4s ease-in-out;
width: 100%;
z-index: 100;
}
.headerItem {
transition: 2s top ease-in-out;
position: relative;
top: -50px;
}
.headerItem:hover {
margin-top: 2px;
}
.headerItemButton:hover {
color: var(--mainTextGold);
text-decoration: none;
}
.movein {
animation: moveIn 0.9s 1;
animation-fill-mode: forwards;
}
@keyframes moveIn {
0% {
top: -50px;
}
100% {
top: 0px;
}
}
</style>
<div class="container-fluid">
<div class="row mt-3">
<div class="col-6 col-lg-4">
<h1 class="headerItem" style="color: var(--mainTextGold);">Paradis</h1>
</div>
<div class="col-6 col-lg-8">
<div class="d-block d-lg-none">
<h3 class="text-right">BUTTONS</h3>
</div>
<div class="d-none d-lg-flex justify-content-end mt-2">
<div class="col-lg-auto headerItem" style="color: white; font-size: 20px;"><a href="#whoAmILink"
class="headerItemButton">whoami</a></div>
<div class="col-lg-auto headerItem" style="color: white; font-size: 20px;"><a
href="#aboutMeLink" class="headerItemButton">about</a></div>
<div class="col-lg-auto headerItem" style="color: white; font-size: 20px;"><a
href="#projectsLink" class="headerItemButton">projects</a></div>
<div class="col-lg-auto headerItem" style="color: white; font-size: 20px;"><a
href="#workEducationLink" class="headerItemButton">Work/Education</a></div>
<div class="col-lg-auto headerItem" style="color: white; font-size: 20px;"><a
href="#contactLink" class="headerItemButton">contact</a></div>
</div>
<style>
a {
color: white;
}
</style>
</div>
</div>
</div>
</header>
<body>
<div id="mainHome" style="display: none; padding-top: 200px;" class="container">
<div class="whoAmI sectorItem fadeSectorIn" id="mainSectorHolder">
<h1 class="consoleTypeMessage" id="whoAmILink" style="display: none;">>WhoAmI</h1>
<div class="container">
<div class="row" style="color: white; font-size: 60px;">
<div class="col-3 d-none d-lg-block text-right">
<p>Hi I'm </p>
</div>
<div class="col-9 d-block">
<div class="d-none d-lg-block">
<p style="color: var(--mainTextGold);"><span class="auto-type"></span></p>
</div>
<div class="d-block d-lg-none">
<p>Welcome</p>
</div>
</div>
<div class="col-12 text-center d-none d-lg-block">
<p style="color: var(--mainTextGold); font-size: 30px;">And I Code</p>
</div>
<div class="col-12 text-center">
<p style="font-size: 20px;">I'm a software engineer specializing in building and optimizing
exceptional digital experiences. Currently, focusing on studying in college a Bachelor's
Degree in Game Development</p>
</div>
<div class="col-12 d-flex justify-content-center">
<a href="#contactLink">
<input type="button" class="whoAmIButton" value="Lets Talk"></input>
</a>
<style>
.whoAmIButton {
font-size: 15px;
height: 50px;
width: 150px;
background-color: transparent;
color: var(--mainTextGold);
border-radius: 10px;
border-color: var(--mainTextGold);
}
</style>
</div>
</div>
</div>
</div>
<div class="aboutMe" id="mainSectorHolder">
<h1 class="consoleTypeMessage" id="aboutMeLink">> About Me</h1>
<div class="container">
<div class="row">
<div class="col d-none d-md-block">
<img src="me.jpg" alt="logo" style="border: 1px solid white; margin-left: 50px;">
</div>
<div class="col">
<p class="aboutmeText">Hello! My name is Lucas and i enojy creating things that live on the
internet. My interest in programming started back in 2016 with simple projects in
school, turns
out learning the most basic c++ made wonders for my carrer, as it tought me the most
esential
concepts.</p>
<br>
<span class="aboutmeText">Fast-foward to today, and i've had the privilege of studying most
of
my life things like </span><span class="aboutmeTextMain"> Data Science, Web Development
and
Server Management. </span> <span class="aboutmeText">My main focus these days is
building
optimized, well writen projects.
</span>
<br>
<br>
<p class="aboutmeText">Here are a few technologies I've been working with recently:</p>
<div class="container">
<div class="row">
<div class="col-12 col-md-6">
<ul class="aboutmeTextMain">
<li>Unity</li>
<li>C#</li>
<li>JavaScript</li>
</ul>
</div>
<div class="col-12 col-md-6">
<ul class="aboutmeTextMain">
<li>Node.js</li>
<li>AWS</li>
<li>Bootstrap</li>
</ul>
</div>
</div>
</div>
<style>
.aboutmeText {
color: white;
font-size: 19px;
}
.aboutmeTextMain {
color: var(--mainTextGold);
font-size: 19px;
}
</style>
</div>
</div>
</div>
</div>
<style>
:root {
--projectsBackgroundColor: #272727;
--projectsTitleTextColor: rgb(255, 255, 255);
--projectsTextColor: rgb(187, 187, 187);
}
.projectsBox {
padding: 0px;
}
.projectsTools {
display: inline-flex;
align-items: flex-end;
}
</style>
<div class="projects" id="mainSectorHolder">
<h1 class="consoleTypeMessage" id="projectsLink">> projects</h1>
<div class="container">
<div class="row">
<div class="col-12 col-md-6 col-lg-4 projectsBox">
<div style="background-color: var(--projectsBackgroundColor); height: 350px; margin:10px">
<div class="d-flex justify-content-between">
<object data="folder.svg" height="40px" width="40px"
style="margin-left: 15px; margin-top: 10px;"></object>
<object data="github.svg" height="30px" width="30px"
style="margin-top: 15px; margin-right: 15px;"></object>
</div>
<div class="col">
<h3 style="color: var(--projectsTitleTextColor); padding-top: 15px">Personal Website
</h3>
<p style="color: var(--projectsTextColor);">Designed, developed and made my very own
website to display my projects, past and who i am. Hope you like it!</p>
<p style="color: var(--projectsTextColor);">Bootstrap HTML CSS</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 projectsBox">
<div style="background-color: var(--projectsBackgroundColor); height: 350px; margin:10px">
<div class="d-flex justify-content-between">
<object data="folder.svg" height="40px" width="40px"
style="margin-left: 15px; margin-top: 10px;"></object>
<object data="github.svg" height="30px" width="30px"
style="margin-top: 15px; margin-right: 15px;"></object>
</div>
<div class="col">
<h3 style="color: var(--projectsTitleTextColor); padding-top: 15px">BitShop</h3>
<p style="color: var(--projectsTextColor)">This is a copy of a website
(https://www.mercadolibre.com.ar) made using Node.js</p>
<p style="color: var(--projectsTextColor)">Advanced JavaScript, HTML, CSS</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 projectsBox">
<div style="background-color: var(--projectsBackgroundColor); height: 350px; margin:10px">
<div class="d-flex justify-content-between">
<object data="folder.svg" height="40px" width="40px"
style="margin-left: 15px; margin-top: 10px;"></object>
<object data="github.svg" height="30px" width="30px"
style="margin-top: 15px; margin-right: 15px;"></object>
</div>
<div class="col">
<h3 style="color: var(--projectsTitleTextColor); padding-top: 15px">Phising Model
</h3>
<p style="color: var(--projectsTextColor)">Machine learning model made to predict if
a
message is phising that shows results in a friendly website</p>
<p style="color: var(--projectsTextColor)">Scikit-learn, Matplotlib, Pandas</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 projectsBox">
<div style="background-color: var(--projectsBackgroundColor); height: 350px; margin:10px">
<div class="d-flex justify-content-between">
<object data="folder.svg" height="40px" width="40px"
style="margin-left: 15px; margin-top: 10px;"></object>
<object data="github.svg" height="30px" width="30px"
style="margin-top: 15px; margin-right: 15px;"></object>
</div>
<div class="col">
<h3 style="color: var(--projectsTitleTextColor); padding-top: 15px">Infinity Craft
</h3>
<p style="color: var(--projectsTextColor)">Infinity Craft is a minecraft set of
plugins
made with java</p>
<p style="color: var(--projectsTextColor)">Server Packages, Java, Async Players</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 projectsBox">
<div style="background-color: var(--projectsBackgroundColor); height: 350px; margin:10px">
<div class="d-flex justify-content-between">
<object data="folder.svg" height="40px" width="40px"
style="margin-left: 15px; margin-top: 10px;"></object>
<object data="github.svg" height="30px" width="30px"
style="margin-top: 15px; margin-right: 15px;"></object>
</div>
<div class="col">
<h3 style="color: var(--projectsTitleTextColor); padding-top: 15px">Pong</h3>
<p style="color: var(--projectsTextColor)">This is a copy of the game Atari 1972
which
you can play in different modes. Made entirely on window.</p>
<p style="color: var(--projectsTextColor)">SDL, C++, C</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 projectsBox">
<div style="background-color: var(--projectsBackgroundColor); height: 350px; margin:10px">
<div class="d-flex justify-content-between">
<object data="folder.svg" height="40px" width="40px"
style="margin-left: 15px; margin-top: 10px;"></object>
<object data="github.svg" height="30px" width="30px"
style="margin-top: 15px; margin-right: 15px;"></object>
</div>
<div class="col">
<h3 style="color: var(--projectsTitleTextColor); padding-top: 15px">AutoDefiner</h3>
<p style="color: var(--projectsTextColor)">AutoDefiner is an automation tool made
for a
client which makes a repetitive task in just seconds</p>
<p style="color: var(--projectsTextColor)">Python, Selenium</p>
</div>
</div>
</div>
</div>
</div>
<style>
.skillCol {
padding-top: 60px;
height: 450px;
background-color: grey;
}
</style>
</div>
<div class="worksAndEducation" id="mainSectorHolder">
<h1 class="consoleTypeMessage" id="workEducationLink">> Work / Education</h1>
<div class="container">
<div class="col">
<div class="workAndEducationPc">
<div class="row">
<div class="col">
<h5 style="color: var(--mainTextGold);">2021</h5>
<h4 style="color: var(--secTextColor)">Full Stack Web Programming Course</h4>
<h5 style="color: var(--descColor)">made in DigitalHouse,
</h5>
</div>
<div class="col">
<h5 style="color: var(--mainTextGold);">2021</h5>
<h4 style="color: var(--secTextColor)">Data Science Course</h4>
<h5 style="color: var(--descColor)">made in DigitalHouse,
<h5>
</div>
</div>
<br>
<div class="row">
<div class="col">
<h5 style="color: var(--mainTextGold);">2021</h5>
<h4 style="color: var(--secTextColor)">Started Working In Freelancing</h4>
<h5 style="color: var(--descColor)">here i made a bit of everything, from web
development to python automation programs</h5>
</div>
<div class="col">
<h5 style="color: var(--mainTextGold);">2022</h5>
<h4 style="color: var(--secTextColor)">Started Batchler's Degree in Game Development
</h4>
<h5 style="color: var(--descColor)">currently here, studying in UADE</h5>
</div>
</div>
<div class="row">
<div class="col">
<h5 style="color: var(--mainTextGold);">2019</h5>
<h4 style="color: var(--secTextColor)">Advanced Python Course</h4>
<h5 style="color: var(--descColor)">Made this python course and to this day i still
use most of the things i learned there</h5>
</div>
<div class="col">
<h5 style="color: var(--mainTextGold);"></h5>
<h4 style="color: var(--secTextColor)"></h4>
<h5 style="color: var(--descColor)"></h5>
</div>
</div>
</div>
<div class="workAndEducationMobile">
<div class="col">
<h5 style="color: var(--mainTextGold);">2021</h5>
<h4 style="color: var(--secTextColor)">Full Stack Web Programming Course</h4>
<h5 style="color: var(--descColor)">made in DigitalHouse,
</h5>
</div>
<div class="col">
<h5 style="color: var(--mainTextGold);">2021</h5>
<h4 style="color: var(--secTextColor)">Data Science Course</h4>
<h5 style="color: var(--descColor)">made in DigitalHouse,
</h5>
</div>
<br>
<div class="col">
<h5 style="color: var(--mainTextGold);">2021</h5>
<h4 style="color: var(--secTextColor)">Started Working In Freelancing</h4>
<h5 style="color: var(--descColor)">here i made a bit of everything, from web
development to python automation programs</h5>
</div>
<div class="col">
<h5 style="color: var(--mainTextGold);">2022</h5>
<h4 style="color: var(--secTextColor)">Started Batchler's Degree in Game Development
</h4>
<h5 style="color: var(--descColor)">currently here, studying in UADE</h5>
</div>
</div>
</div>
</div>
</div>
<div class="contact" id="mainSectorHolder">
<h1 class="consoleTypeMessage" id="contactLink">> Contact</h1>
<div class="container">
<div class="row">
<div class="col-12">
<h3 class="text-center contactText" style="color: white;">I am always looking for new
oportunities, feel free to send a message for either
make me a question or just say hi, and i'll try my best to get back to you </h3>
</div>
<div class="col-12 justify-content-center d-flex">
<button type="button" class="btn contactBtn"
onclick="window.open('mailto:[email protected]');">Say Hi</button>
</div>
<div class="col-12 justify-content-center d-flex pt-3">
<p style="color: white;">or just send me an email at: [email protected]</p>
</div>
</div>
</div>
<style>
.contactBtn {
background-color: transparent;
border: 1px solid var(--mainTextGold);
color: var(--mainTextGold);
height: 50px;
width: 150px;
margin-top: 20px;
}
</style>
</div>
</div>
<script type="text/javascript" src="particles.js"></script>
<script type="text/javascript" src="app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
<script>
var headerItems = document.getElementsByClassName("headerItem")
for (let i = 0; i < headerItems.length; i++) {
const item = headerItems[i];
moveIn(item, i * 200)
}
function moveIn(item, delay) {
setTimeout(() => {
item.classList.add("movein")
}, delay)
}
</script>
</body>
<footer style="padding-top: 200px;">
<div class="container">
<div class="row">
<div class="col">
<p style="color: grey" class="justify-content-center d-flex">Designed & Built by Paradis <br> Made
with Particles.js Bootstrap Jquery Ajax Typed.js</p>
</div>
</div>
</div>
</footer>
<style>
.sectorItem {
transition: 2s all ease-in-out;
opacity: 0;
}
.fadeSectorIn {
animation: fadeIn 0.9s 1;
animation-fill-mode: forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
<script>
let elements = document.querySelectorAll("[id^='mainSectorHolder']")
for (let i = 0; i < elements.length; i++) {
if (screen.width >= 1024) {
const element = elements[i];
$(element).css("visibility", "hidden")
$(element).attr("loaded", "false");
}
}
window.addEventListener("scroll", (event) => {
toggleSectors()
});
setTimeout(() => {
toggleSectors()
}, 100);
function toggleSectors() {
// show elements as user scrolls down
let elements = document.querySelectorAll("[id^='mainSectorHolder']")
for (let i = 0; i < elements.length; i++) {
const element = elements[i];
if (isScrolledIntoView(element) && $(element).attr("loaded") == "false") {
let children = $(element).children()[0]
$(children).css("visibility", "visible")
$(element).attr("loaded", "true");
if (i == 0) {
console.log("startring")
setTimeout(() => {
var options = {
strings: ['Paradis', 'a BackEnd Developer', 'a Web Developer', 'a Data Scienctist'],
typeSpeed: 60,
backSpeed: 60,
loop: true
};
var typed = new Typed('.auto-type', options);
}, 800);
}
let oldText = children.innerText;
//$(children).text("a")
children.innerText = ""
oldText = oldText.split("")
for (let i = 0; i < oldText.length; i++) {
const lett = oldText[i];
setTimeout(() => {
children.innerText += lett
}, i * 100, children, lett);
if (i == oldText.length - 1) {
setTimeout(() => {
let sectorElement = $(element).children()[1]
$(sectorElement).css("visibility", "visible")
$(sectorElement).addClass("sectorItem")
$(sectorElement).addClass("fadeSectorIn")
}, i * 100, element, lett);
}
}
}
}
}
function isScrolledIntoView(elem) {
var docViewTop = $(window).scrollTop();
var docViewBottom = docViewTop + $(window).height();
var elemTop = $(elem).offset().top;
var elemBottom = elemTop + $(elem).height();
return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));
}
</script>
<style>
.nav-up {
top: -100px;
}
</style>
<script>
var didScroll;
var lastScrollTop = 0;
var delta = 5;
var navbarHeight = $('header').outerHeight();
$(window).scroll(function (event) {
if (screen.width >= 1024) didScroll = true;
});
setInterval(function () {
if (didScroll) {
hasScrolled();
didScroll = false;
}
}, 100);
function hasScrolled() {
var st = $(this).scrollTop();
// Make sure they scroll more than delta
if (Math.abs(lastScrollTop - st) <= delta)
return;
// If they scrolled down and are past the navbar, add class .nav-up.
// This is necessary so you never see what is "behind" the navbar.
if (st > lastScrollTop && st > navbarHeight) {
// Scroll Down
$('header').removeClass('nav-down').addClass('nav-up');
} else {
// Scroll Up
if (st + $(window).height() < $(document).height()) {
$('header').removeClass('nav-up').addClass('nav-down');
}
}
lastScrollTop = st;
}
</script>
<script>
$("#mainHome").toggle()
</script>
</main>
</html>