-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
404 lines (343 loc) · 9.64 KB
/
index.html
File metadata and controls
404 lines (343 loc) · 9.64 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dltkdgns00 | Linktree</title>
<meta name="description" content="쓸데없는거 만들기 1일차 - dltkdgns00의 링크 모음">
<!-- FontAwesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Google Fonts (Inter for clean look) -->
<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=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #0f0f11;
--text-color: #ffffff;
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--glass-hover: rgba(255, 255, 255, 0.1);
--highlight-color: #00ff88;
--highlight-glow: rgba(0, 255, 136, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
overflow-x: hidden;
}
/* Animated Background Mesh */
.background-mesh {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #000000 100%);
overflow: hidden;
}
.blob {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.6;
animation: float 10s infinite ease-in-out;
}
.blob-1 {
top: -10%;
left: -10%;
width: 500px;
height: 500px;
background: #4a00e0;
animation-delay: 0s;
}
.blob-2 {
bottom: -10%;
right: -10%;
width: 400px;
height: 400px;
background: #8e2de2;
animation-delay: -5s;
}
.blob-3 {
top: 40%;
left: 40%;
width: 300px;
height: 300px;
background: #00b4db;
opacity: 0.4;
animation-delay: -2s;
}
@keyframes float {
0%,
100% {
transform: translate(0, 0);
}
50% {
transform: translate(30px, 50px);
}
}
/* Main Container */
.container {
width: 100%;
max-width: 680px;
padding: 3rem 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
z-index: 1;
}
/* Profile Section */
.profile-section {
text-align: center;
margin-bottom: 2.5rem;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.8s ease forwards;
}
.profile-img-container {
position: relative;
width: 120px;
height: 120px;
margin: 0 auto 1.5rem;
}
.profile-img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--glass-border);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.profile-name {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
letter-spacing: 0.5px;
}
.profile-bio {
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.7);
font-weight: 300;
}
/* Links Section */
.links-container {
width: 100%;
display: flex;
flex-direction: column;
gap: 1rem;
}
.link-card {
display: flex;
align-items: center;
justify-content: space-between;
/* Icon left, Text center-ish */
padding: 1rem 1.5rem;
background: var(--glass-bg);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
border-radius: 16px;
text-decoration: none;
color: var(--text-color);
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
position: relative;
overflow: hidden;
/* Animation Initial State */
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.6s ease forwards;
}
/* Staggered Animation Delays */
.link-card:nth-child(1) {
animation-delay: 0.2s;
}
.link-card:nth-child(2) {
animation-delay: 0.3s;
}
.link-card:nth-child(3) {
animation-delay: 0.4s;
}
.link-card:nth-child(4) {
animation-delay: 0.5s;
}
.link-card:nth-child(5) {
animation-delay: 0.6s;
}
.link-card:nth-child(6) {
animation-delay: 0.7s;
}
.link-card:hover {
transform: scale(1.02);
background: var(--glass-hover);
border-color: rgba(255, 255, 255, 0.3);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.link-content {
display: flex;
align-items: center;
gap: 1rem;
width: 100%;
justify-content: center;
position: relative;
}
.link-icon {
font-size: 1.2rem;
position: absolute;
left: 0;
}
.link-text {
font-weight: 500;
font-size: 1rem;
}
/* Highlight Card Style */
.link-card.highlight {
border: 1px solid var(--highlight-color);
box-shadow: 0 0 15px var(--highlight-glow);
}
.link-card.highlight:hover {
background: rgba(0, 255, 136, 0.1);
}
.link-card.highlight .link-text {
color: var(--highlight-color);
font-weight: 700;
}
.link-card.highlight .link-icon {
color: var(--highlight-color);
}
/* Footer */
.footer {
margin-top: 3rem;
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.4);
text-align: center;
opacity: 0;
animation: fadeIn 1s ease forwards 1s;
}
/* Animations */
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
/* Mobile Responsiveness adjustments */
@media (max-width: 480px) {
.container {
padding: 2rem 1rem;
}
.profile-img-container {
width: 100px;
height: 100px;
}
.link-card {
padding: 0.9rem 1.2rem;
}
}
</style>
</head>
<body>
<!-- Animated Background -->
<div class="background-mesh">
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<div class="blob blob-3"></div>
</div>
<div class="container">
<!-- Profile Section -->
<header class="profile-section">
<div class="profile-img-container">
<!-- Placeholder image, replace src with actual URL -->
<img src="https://github.com/dltkdgns00.png" alt="dltkdgns00 Profile" class="profile-img">
</div>
<h1 class="profile-name">dltkdgns00</h1>
<p class="profile-bio">쓸데없는거 만들기 1일차<br>(Making useless things, Day 1)</p>
</header>
<!-- Links Section -->
<main class="links-container">
<!-- Highlighted Link -->
<a href="https://ytmusic-sharer.sldev.kr" class="link-card highlight" target="_blank" rel="noopener noreferrer">
<div class="link-content">
<i class="fa-solid fa-music link-icon"></i>
<span class="link-text">🎵 YouTube Music Sharer</span>
</div>
</a>
<!-- Standard Links -->
<a href="https://sldev.kr" class="link-card" target="_blank" rel="noopener noreferrer">
<div class="link-content">
<i class="fa-solid fa-globe link-icon"></i>
<span class="link-text">Solid Lab(sldev.kr)</span>
</div>
</a>
<a href="https://github.com/SolidLab-dev" class="link-card" target="_blank" rel="noopener noreferrer">
<div class="link-content">
<i class="fa-brands fa-github link-icon"></i>
<span class="link-text">GitHub</span>
</div>
</a>
<a href="https://instagram.com/sldev.official" class="link-card" target="_blank" rel="noopener noreferrer">
<div class="link-content">
<i class="fa-brands fa-instagram link-icon"></i>
<span class="link-text">Instagram</span>
</div>
</a>
<a href="mailto:contact@sldev.kr" class="link-card">
<div class="link-content">
<i class="fa-solid fa-envelope link-icon"></i>
<span class="link-text">Email Me</span>
</div>
</a>
<!-- Future links can be added here easily -->
</main>
<!-- Footer -->
<footer class="footer">
<p>© 2025 sldev.kr. All rights reserved.</p>
</footer>
</div>
<script>
// Optional: Add simple tilt effect to cards on mousemove (Desktop only)
const cards = document.querySelectorAll('.link-card');
document.addEventListener('mousemove', (e) =>
{
if (window.innerWidth > 768)
{
const x = e.clientX / window.innerWidth;
const y = e.clientY / window.innerHeight;
cards.forEach(card =>
{
const rect = card.getBoundingClientRect();
const cardX = rect.left + rect.width / 2;
const cardY = rect.top + rect.height / 2;
const angleX = (cardY - e.clientY) / 30;
const angleY = (e.clientX - cardX) / 30;
// Only apply if mouse is somewhat close to keep performance high
if (Math.abs(cardX - e.clientX) < 300 && Math.abs(cardY - e.clientY) < 300)
{
card.style.transform = `perspective(1000px) rotateX(${angleX}deg) rotateY(${angleY}deg) scale(1.02)`;
} else
{
card.style.transform = 'perspective(1000px) rotateX(0) rotateY(0) scale(1)';
}
});
}
});
</script>
</body>
</html>