-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
347 lines (308 loc) · 17.8 KB
/
Copy pathindex.html
File metadata and controls
347 lines (308 loc) · 17.8 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
<!DOCTYPE html>
<html>
<head>
<!--fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Special+Elite&display=swap" rel="stylesheet">
<!--meta tags-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="The Despacho of Cocotrilo">
<meta property="og:description" content="dreamer, maker, hobbit in mordor — a portfolio of hardware builds and side quests.">
<meta property="og:image" content="images/sprites/ficon.png">
<link rel="icon" type="image/png" href="images/sprites/ficon.png">
<script src="https://cdn.tailwindcss.com"></script>
<!-- Tailwind CSS Configuration -->
<script>
tailwind.config = {
theme: {
extend: {
colors: {
despacho: {
bg: '#0a0a12',
paper: '#0f172a',
phosphor: '#00ff41',
phosphorDim: '#166534',
psy1: '#ff00ff', // Rosa neón puro
psy2: '#00ffff', // Cian/Agua eléctrica
psy3: '#7b2ff7', // Púrpura eléctrico
chrome: '#e2e8f0', // Para efectos metálicos
}
},
keyframes: {
crt0n: {
'0%': { opacity: '0', filter: 'brightness(3)' },
'10%': { opacity: '1', filter: 'brightness(3)' },
'100%': { opacity: '1', filter: 'brightness(1)' },
}
},
animation: {
crt0n: 'crt0n 1s ease-in-out',
},
fontFamily: {
'jetbrains': ['JetBrains Mono', 'monospace'],
'special': ['Special Elite', 'cursive'],
}
}
}
}
</script>
<title>The Despacho of Cocotrilo</title>
</head>
<body class="bg-despacho-bg text-despacho-phosphor font-jetbrains animate-crt0n">
<!--scanlines-->
<div class="fixed inset-0 pointer-events-none z-50 opacity-[0.2]"
style="background: repeating-linear-gradient(0deg, transparent 0px, transparent 1px, rgba(255,255,255,0.5) 2px, transparent 3px);">
</div>
<!--vignette-->
<div class="fixed inset-0 pointer-events-none z-40"
style="background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,1) 100%);">
</div>
<!--blobs hihihiha-->
<div class="fixed top-20 left-10 w-[500px] h-[500px] bg-despacho-psy1 rounded-full blur-3xl opacity-50 -z-10 animate-pulse [animation-delay:0.5s]"></div>
<div class="fixed bottom-20 right-10 w-96 h-96 bg-despacho-psy2 rounded-full blur-3xl opacity-50 -z-10 animate-pulse [animation-delay:1.5s]"></div>
<div class="fixed top-1/2 left-1/2 w-80 h-80 bg-despacho-psy3 rounded-full blur-3xl opacity-50 -z-10 animate-pulse"></div>
<div class="w-full bg-[url('images/sprites/bg1.png')] [image-rendering:pixelated]"
style="background-attachment: fixed; background-size: cover;
background-position: center 50px;">
<div class="max-w-5xl mx-auto">
<header class="text-center py-16">
<h1 id="typedTittle" class="text-5xl font-bold after:content-['\_'] after:animate-pulse"></h1>
<p class="text-gray-400 mt-2">dreamer, maker , a hobbit in mordor</p>
</header>
<script>
const text= "The Despacho of Cocotrilo";
const el = document.getElementById("typedTittle");
let i = 0;
function typeWriter() {
if (i < text.length) {
el.textContent += text.charAt(i);
i++;
setTimeout(typeWriter, 60);
}
}
typeWriter();
</script>
<!--about me-->
<section class="text-center">
<h2 class="text-2xl font-bold [text-shadow:0_0_15px_rgba(0,255,65,0.6)]">About me</h2>
<p class="text-gray-400 mx-10 mb-10 mt-2 leading-snug">My name is Isaac, Isaac means "the one who laughs." I'm a 16 year old currently in high school, living a kind of double life. In the mornings I'm a normal student, laughing with friends and answering the teacher's questions. After three o'clock, everything changes — that's when I chase the life I want to be proud of. The afternoon starts with a gym session, then I get home and give everything to my dream: studying for the SAT while building a bigger portfolio. Making things, learning, racing against time — that's what drives me. I love the feeling of almost failing, because it means I get another shot to prove myself right. Faster each time. Fewer mistakes. Always learning.</p>
</section>
</div>
<!--Portfolio-->
<div class="max-w-5xl mx-auto">
<section class="mx-10 mb-10">
<h2 class="text-2xl font-bold [text-shadow:0_0_15px_rgba(0,255,65,0.6)]">> My Work</h2>
<!--Dsplit-->
<div class="bg-white/5 backdrop-blur-xl border-t border-l border-white/20 rounded-xl p-6 mb-10 relative
transition-all duration-300 hover:scale-[1.02] hover:border-despacho-phosphor hover:border-2">
<h3 class="mb-5 font-bold text-center">The-Dichotomy-Split</h3>
<div class="flex flex-col md:flex-row gap-5 rounded-lg overflow-hidden">
<!-- The biggest code ever haahhaahah-->
<img class="w-full h-full md:flex-1 md:h-64 object-cover" src="images/dpslit/gifdsplit.gif" alt="Keyboard project">
<img class="w-full h-full md:flex-1 md:h-64 object-cover" src="images/dpslit/dsplit.jpeg" alt="Keyboard project">
</div>
<a href="https://github.com/Cocotrilito/The-Dichotomy-Split"
target="_blank"
rel="noopener noreferrer">
<img class="absolute -bottom-6 -left-7 rotate-12 mt-4 w-24
[image-rendering:pixelated]
drop-shadow-[0_0_10px_rgba(0,255,65,0.6)]
transition-transform duration-200 hover:rotate-0 hover:scale-110"
src="images/sprites/github.png" alt="Repo">
</a>
</div>
<!--Branded-->
<div class="bg-white/5 backdrop-blur-xl border-t border-l border-white/20 rounded-xl p-6 mb-10 relative
transition-all duration-300 hover:scale-[1.02] hover:border-despacho-phosphor hover:border-2">
<h3 class="mb-5 font-bold text-center">The Branded One</h3>
<div class="flex flex-col md:flex-row gap-5 rounded-lg overflow-hidden">
<img class="w-full object-contain md:w-96 md:h-80 md:object-cover" src="images/brandedone/brandedone.gif" alt="Business PCB card demo">
<img class="w-full object-contain md:flex-1 md:h-80 md:object-cover" src="images/brandedone/brandedone.jpeg" alt="Business PCB card">
<img class="w-full object-contain md:flex-1 md:h-80 md:object-cover" src="images/brandedone/back.jpeg" alt="Business PCB card Back">
</div>
<a href="https://github.com/Cocotrilito/The-Branded-one"
target="_blank"
rel="noopener noreferrer">
<img class="absolute -bottom-5 -left-9 -rotate-12 mt-5 w-24
[image-rendering:pixelated]
drop-shadow-[0_0_10px_rgba(0,255,65,0.6)]
transition-transform duration-200 hover:rotate-0 hover:scale-110"
src="images/sprites/github.png" alt="Repo">
</a>
</div>
<!--Halo-->
<div class="bg-white/5 backdrop-blur-xl border-t border-l border-white/20 rounded-xl p-6 mb-10 relative
transition-all duration-300 hover:scale-[1.02] hover:border-despacho-phosphor hover:border-2">
<h3 class="mb-5 font-bold text-center">Halo-0</h3>
<div class="flex flex-col md:flex-row gap-5 rounded-lg overflow-hidden">
<img class="w-full object-contain md:w-96 md:h-80 md:object-cover" src="images/halo/poster.png" alt="Halo-0 poster">
<img class="w-full object-contain md:w-96 md:h-80 md:object-cover" src="images/halo/front.png" alt="Halo-0 Front">
<img class="w-full object-contain md:w-96 md:h-80 md:object-cover" src="images/halo/back.png" alt="Halo-0 Back">
</div>
<a class="underline" href="https://github.com/Cocotrilito/HALO-0"
target="_blank"
rel="noopener noreferrer">
<img class="absolute -bottom-7 -left-11 rotate-12 mt-5 w-24
[image-rendering:pixelated]
drop-shadow-[0_0_10px_rgba(0,255,65,0.6)]
transition-transform duration-200 hover:rotate-0 hover:scale-110"
src="images/sprites/github.png" alt="Repo">
</a>
</div>
<!--Chimborazo-->
<div class="bg-white/5 backdrop-blur-xl border-t border-l border-white/20 rounded-xl p-6 mb-10 relative
transition-all duration-300 hover:scale-[1.02] hover:border-despacho-phosphor hover:border-2">
<h3 class="mb-5 font-bold text-center">Chimborazo Stratos 1</h3>
<div class="flex flex-col md:flex-row gap-5 rounded-lg overflow-hidden">
<img class="w-full object-contain md:flex-1 md:h-80 md:object-cover" src="images/chim/sydney.gif" alt="Chimborazo Build Demo">
<img class="w-full object-contain md:flex-1 md:h-80 md:object-cover" src="images/chim/build.png" alt="Chimborazo Build Picture">
</div>
<a class="underline" href="https://github.com/Cocotrilito/Chimborazo-Stratos-1"
target="_blank"
rel="noopener noreferrer">
<img class="absolute -bottom-5 -left-11 -rotate-6 mt-5 w-24
[image-rendering:pixelated]
drop-shadow-[0_0_10px_rgba(0,255,65,0.6)]
transition-transform duration-200 hover:rotate-0 hover:scale-110"
src="images/sprites/github.png" alt="Repo"></a>
</div>
<!--Voyager-->
<div class="bg-white/5 backdrop-blur-xl border-t border-l border-white/20 rounded-xl p-6 mb-10 relative
transition-all duration-300 hover:scale-[1.02] hover:border-despacho-phosphor hover:border-2">
<h3 class="mb-5 font-bold text-center">Voyager Panel</h3>
<div class="flex flex-col md:flex-row gap-5 rounded-lg overflow-hidden">
<img class="w-full object-contain md:flex-1 md:h-80 md:object-cover" src="images/voyager/VoyagerPanel.gif" alt="Voyager Build Demo">
<img class="w-full object-contain md:flex-1 md:h-80 md:object-cover" src="images/voyager/finalbuild.jpeg" alt="Voyager Build Picture">
</div>
<a class="underline" href="https://github.com/Cocotrilito/Voyager-Panel"
target="_blank"
rel="noopener noreferrer">
<img class="absolute -bottom-12 -left-11 rotate-12 mt-5 w-24
[image-rendering:pixelated]
drop-shadow-[0_0_10px_rgba(0,255,65,0.6)]
transition-transform duration-200 hover:rotate-0 hover:scale-110"
src="images/sprites/github.png" alt="Repo">
</a>
</div>
</section>
</div>
</div>
<!--Beyond the desk-->
<section class="relative w-full md:bg-[url('images/sprites/beyond-bg.png')] md:bg-cover md:bg-center"
style="image-rendering: pixelated;">
<!--Stickers-->
<img id="stickerGym" src="images/sprites/gym.png"
class="draggable-sticker hidden md:block absolute w-16 [image-rendering:pixelated] cursor-grab active:cursor-grabbing z-20
transition-[transform,filter] duration-200 hover:scale-110 hover:drop-shadow-[0_0_15px_rgba(0,255,65,0.8)]"
style="top: 420px; left: 30%;" draggable="false">
<img id="stickerBoulder" src="images/sprites/boulder.png"
class="draggable-sticker hidden md:block absolute w-16 [image-rendering:pixelated] cursor-grab active:cursor-grabbing z-20
transition-[transform,filter] duration-200 hover:scale-110 hover:drop-shadow-[0_0_15px_rgba(0,255,65,0.8)]"
style="top: 45%; left: 65%;" draggable="false">
<img id="stickerInteract" src="images/sprites/rotary.png"
class="draggable-sticker hidden md:block absolute w-16 [image-rendering:pixelated] cursor-grab active:cursor-grabbing z-20
transition-[transform,filter] duration-200 hover:scale-110 hover:drop-shadow-[0_0_15px_rgba(0,255,65,0.8)]"
style="top: 155px; left: 39%;" draggable="false">
<img id="stickerMisiones" src="images/sprites/misiones.png"
class="draggable-sticker hidden md:block absolute w-16 [image-rendering:pixelated] cursor-grab active-cursor-grabbing z-20 animate-pulse
transition-[transform,filter] duration-200 hover:scale-110 hover:drop-shadow-[0_0_15px_rgba(212,175,55,1)]"
style="top: 17%; left: 64%;" draggable="false">
<img id="stickerAvion" src="images/sprites/travel.png"
class="draggable-sticker hidden md:block absolute w-16 [image-rendering:pixelated] cursor-grab active-cursor-grabbing z-20
transition-[transform,filter] duration-200 hover:scale-110 hover:drop-shadow-[0_0_15px_rgba(0,255,65,0.8)]"
style="top: 69%; left: 40%;" draggable="false">
<!--overlay-->
<div class="max-w-5xl mx-auto px-5 relative z-10">
<div class="text-center mx-10 mb-10">
<h2 class="text-2xl font-bold my-4 [text-shadow:0_0_15px_rgba(0,255,65,0.6)]">> Beyond the desk</h2>
<p class="text-gray-400">As a normal human being I like to do some other stuff <br> this is what I mostly do in my free time away from my desk</p>
</div>
<!--Activities-->
<div class="bg-despacho-bg/60 backdrop-blur-xl border-t border-l border-white/20 rounded-xl p-6 mb-10
transition-all duration-300 hover:scale-[1.02] hover:border-despacho-phosphor hover:border-2">
<div class="grid grid-cols-1 md:grid-cols-2 gap-10 mx-10 mb-10">
<!--Interact-->
<div>
<h3 class="font-bold text-xl my-5">Interact Meraki</h3>
<p class="text-gray-400">Being part of a club that challenges you to become a better person and learn from others, this is just a small dip into Rotary in general, I am currently the vicepresident of my club</p>
</div>
<!--Misiones-->
<div>
<h3 class="font-bold text-xl my-5">Misiones</h3>
<p class="text-gray-400">Following Jesus word, and actually helping and coexist with locals of your own country in a completly different reality to you changes your whole perspective of your privileges and blessings become more lucid to you. </p>
</div>
<!--Gym-->
<div>
<h3 class="font-bold text-xl my-5">Gym</h3>
<p class="text-gray-400">A strong mind also needs a strong body. The gym is my way to push myself to the limit, give everything I have, and prove myself I am capable of things my mind says im not, without the gym its impossible for me to exist. </p>
</div>
<!--Bouldering-->
<div>
<h3 class="font-bold text-xl my-5">Bouldering</h3>
<p class="text-gray-400">Bouldering, ohhh the adrenaline to feel the last bit of calcium in your muscles is draining, to reach the final rock and at the very top, fall. of course it hurts but its worth it, you aimed for the stars and you did touchthem... </p>
</div>
</div>
<!--Solo Traveling-->
<div class="mx-10 mb-10">
<h3 class="font-bold text-xl my-5 ">Solo Traveling</h3>
<p class="text-gray-400">People are likely to travel to "find themselves" I completly disagree with that idea, the moment you pack your bags you start a journey of self CREATION, you start to create yourself, and at the journey you are not sightseeing YOU are living the moment, you meet people you meet faces you meet voices, you meet laughs you meet EVERYTHING and that EVERYTHING becomes part of YOU, thats why you never come back the same from a solo traveling</p>
</div>
</div>
</div>
</section>
<!--Footer-->
<footer class="bg-white/5 backdrop-blur-xl border-t border-l border-white/20 rounded-t-xl p-6 w-full">
<div class="mx-20 relative">
<a href="https://github.com/Cocotrilito">My Github</a>
<p> Is someone reading this?</p>
<a href="https://www.youtube.com/@cocotrilo9204">My Youtube?</a>
<img class="absolute top-1 right-1 [image-rendering:pixelated]"
src="images/sprites/cocodance.png" alt="cocotrilo">
</div>
</footer>
<!--button backtotop-->
<button id="backToTop" onclick="window.scrollTo({top: 0, behavior: 'smooth'})"
class="fixed bottom-6 right-6 bg-despacho-phosphor text-despacho-bg font-bold
px-4 py-2 rounded-full opacity-0 pointer-events-none
transition-opacity duration-300 z-50">
↑ TOP
</button>
<script>
window.addEventListener('scroll', () => {
const btn = document.getElementById('backToTop');
if (window.scrollY > 700) {
btn.classList.remove('opacity-0', 'pointer-events-none');
}else {
btn.classList.add('opacity-0', 'pointer-events-none')
}
});
</script>
<!--Script stickers-->
<script>
function makeDraggable(el) {
let isDragging = false, offsetX, offsetY, parentRect;
el.addEventListener('mousedown', (e) => {
isDragging = true;
el.classList.remove('animate-pulse');
el.style.zIndex = 100;
parentRect = el.offsetParent.getBoundingClientRect();
offsetX = e.clientX - el.getBoundingClientRect().left;
offsetY = e.clientY - el.getBoundingClientRect().top;
});
document.addEventListener('mousemove', (e) => {
if (isDragging) {
el.style.position = 'absolute';
el.style.left = (e.clientX - parentRect.left - offsetX) + 'px';
el.style.top = (e.clientY - parentRect.top - offsetY) + 'px';
}
});
document.addEventListener('mouseup', () => {
isDragging = false;
el.classList.add('animate-pulse')
el.style.zIndex = 20;
});
}
document.querySelectorAll('.draggable-sticker').forEach(makeDraggable);
</script>
</body>
</html>