-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompetences.html
More file actions
471 lines (413 loc) · 12.4 KB
/
competences.html
File metadata and controls
471 lines (413 loc) · 12.4 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Mes Compétences | Portfolio</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"/>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<!-- Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Rajdhani:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--neon-green: #00ff88;
--dark-green: #006341;
--black: #000000;
--dark-gray: #121212;
--light-gray: #e0e0e0;
--neon-glow: 0 0 10px rgba(0, 255, 136, 0.7);
--neon-glow-intense: 0 0 20px rgba(0, 255, 136, 0.9);
}
body {
background-color: var(--black);
color: var(--light-gray);
font-family: 'Rajdhani', sans-serif;
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 30%),
radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 30%);
z-index: -2;
animation: pulse 15s infinite alternate;
}
@keyframes pulse {
0% { opacity: 0.3; }
50% { opacity: 0.7; }
100% { opacity: 0.3; }
}
.section-title {
color: var(--neon-green);
text-shadow: var(--neon-glow);
position: relative;
margin-bottom: 4rem;
font-family: 'Orbitron', sans-serif;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
font-size: 2.5rem;
}
.section-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 150px;
height: 4px;
background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
box-shadow: var(--neon-glow);
animation: lineGrow 1.5s ease-out forwards;
}
@keyframes lineGrow {
from { width: 0; opacity: 0; }
to { width: 150px; opacity: 1; }
}
.card {
background-color: rgba(20, 20, 20, 0.8);
border: 1px solid rgba(0, 255, 136, 0.3);
border-radius: 5px;
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
overflow: hidden;
position: relative;
transform-style: preserve-3d;
perspective: 1000px;
min-height: 250px;
}
.card::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, var(--neon-green), var(--dark-green), var(--neon-green));
z-index: -1;
background-size: 400%;
opacity: 0;
transition: 0.5s;
animation: animate 8s linear infinite;
}
@keyframes animate {
0% { background-position: 0 0; }
50% { background-position: 300% 0; }
100% { background-position: 0 0; }
}
.card:hover {
transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
box-shadow: var(--neon-glow-intense);
border-color: var(--neon-green);
}
.card:hover::before {
opacity: 1;
}
.card-title {
color: var(--neon-green);
font-weight: 600;
font-family: 'Orbitron', sans-serif;
letter-spacing: 1px;
position: relative;
display: inline-block;
}
.card-title::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: var(--neon-green);
transition: width 0.5s ease;
}
.card:hover .card-title::after {
width: 100%;
}
.card-body {
position: relative;
z-index: 1;
padding: 2rem;
}
.list-unstyled {
margin-top: 1.5rem;
}
.list-unstyled li {
padding: 8px 0;
position: relative;
padding-left: 30px;
color: #aaa;
transition: all 0.4s ease;
font-size: 1.1rem;
font-weight: 500;
border-bottom: 1px dashed rgba(0, 255, 136, 0.1);
}
.list-unstyled li::before {
content: '>';
position: absolute;
left: 10px;
color: var(--neon-green);
font-weight: bold;
transition: all 0.3s ease;
}
.card:hover .list-unstyled li {
color: #fff;
text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
transform: translateX(5px);
}
.card:hover .list-unstyled li::before {
transform: scale(1.5);
text-shadow: 0 0 10px var(--neon-green);
}
/* Effet de scanlines */
.scanlines {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(0, 255, 136, 0.03) 1px,
transparent 1px
);
background-size: 100% 4px;
pointer-events: none;
z-index: 1000;
animation: scanline 8s linear infinite;
}
@keyframes scanline {
0% { background-position: 0 0; }
100% { background-position: 0 100%; }
}
/* Effet de terminal clignotant */
.cursor {
animation: blink 1s infinite;
color: var(--neon-green);
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* Animation des cartes */
.card:nth-child(1) { animation: fadeInLeft 0.8s both; }
.card:nth-child(2) { animation: fadeInRight 0.8s both; }
.card:nth-child(3) { animation: fadeInLeft 0.8s 0.2s both; }
.card:nth-child(4) { animation: fadeInRight 0.8s 0.2s both; }
.card:nth-child(5) { animation: fadeInLeft 0.8s 0.4s both; }
/* Particules flottantes */
.particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.particle {
position: absolute;
background-color: rgba(0, 255, 136, 0.5);
border-radius: 50%;
animation: float linear infinite;
filter: blur(1px);
}
@keyframes float {
0% { transform: translateY(0) translateX(0); opacity: 0; }
50% { opacity: 1; }
100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}
/* Responsive */
@media (max-width: 768px) {
.section-title {
font-size: 2rem;
}
.card {
min-height: auto;
}
}
</style>
</head>
<body>
<!-- Effet de scanlines -->
<div class="scanlines"></div>
<!-- Particules flottantes -->
<div class="particles" id="particles"></div>
<section id="competences" class="py-5">
<div class="container">
<h2 class="text-center mb-5 section-title animate__animated animate__fadeInDown">
<span id="typing-text"></span><span class="cursor">_</span>
</h2>
<div class="row g-4">
<!-- Langages -->
<div class="col-md-6 col-lg-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">
<i class="fas fa-code me-2"></i> Langages
</h5>
<ul class="list-unstyled mt-3">
<li>C (Avancé)</li>
<li>C++ (Intermédiaire)</li>
<li>Java (Intermédiaire)</li>
<li>JavaScript (Intermédiaire)</li>
<li>Python </li>
<li>SQL</li>
</ul>
</div>
</div>
</div>
<!-- Web Dev -->
<div class="col-md-6 col-lg-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">
<i class="fas fa-laptop-code me-2"></i> Développement Web
</h5>
<ul class="list-unstyled mt-3">
<li>HTML5</li>
<li>CSS3/Sass</li>
<li>Tailwind CSS</li>
<li>Bootstrap</li>
<li>React (Base)</li>
<li>Node.js (Base)</li>
</ul>
</div>
</div>
</div>
<!-- BDD -->
<div class="col-md-6 col-lg-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">
<i class="fas fa-database me-2"></i> Bases de Données
</h5>
<ul class="list-unstyled mt-3">
<li>MySQL </li>
<li>MongoDB </li>
<li>Oracle 19c</li>
<li>Modélisation MERISE</li>
<li>Optimisation SQL</li>
</ul>
</div>
</div>
</div>
<!-- Outils -->
<div class="col-md-6 col-lg-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">
<i class="fas fa-tools me-2"></i> Outils & IDE
</h5>
<ul class="list-unstyled mt-3">
<li>Git & GitHub</li>
<li>VS Code</li>
<li>Eclipse</li>
<li>IntelliJ IDEA</li>
<li>Docker (Base)</li>
</ul>
</div>
</div>
</div>
<!-- Réseaux -->
<div class="col-md-6 col-lg-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">
<i class="fas fa-network-wired me-2"></i> Systèmes & Réseaux
</h5>
<ul class="list-unstyled mt-3">
<li>Linux/Unix</li>
<li>Administration système</li>
<li>Réseaux TCP/IP</li>
<li>Virtualisation</li>
</ul>
</div>
</div>
</div>
<!-- Méthodologies -->
<div class="col-md-6 col-lg-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">
<i class="fas fa-project-diagram me-2"></i> Méthodologies
</h5>
<ul class="list-unstyled mt-3">
<li>UML</li>
<li>Merise</li>
<li>Agile/Scrum</li>
<li>Cycle en V</li>
<li>Gestion de projet</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script>
// Effet de saisie pour le titre
document.addEventListener('DOMContentLoaded', function() {
const text = "Mes Compétences";
const typingText = document.getElementById('typing-text');
let i = 0;
function typeWriter() {
if (i < text.length) {
typingText.textContent += text.charAt(i);
i++;
setTimeout(typeWriter, 100);
} else {
document.querySelector('.cursor').style.display = 'inline';
}
}
// Démarrer l'animation après un court délai
setTimeout(() => {
typeWriter();
}, 500);
// Créer des particules flottantes
const particlesContainer = document.getElementById('particles');
const particleCount = 40;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Taille aléatoire entre 2px et 6px
const size = Math.random() * 4 + 2;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Position aléatoire
particle.style.left = `${Math.random() * 100}%`;
particle.style.top = `${Math.random() * 100 + 100}%`;
// Durée d'animation aléatoire entre 10s et 30s
const duration = Math.random() * 20 + 10;
particle.style.animationDuration = `${duration}s`;
// Délai aléatoire
particle.style.animationDelay = `${Math.random() * 5}s`;
particlesContainer.appendChild(particle);
}
// Animation au survol des cartes
const cards = document.querySelectorAll('.card');
cards.forEach(card => {
card.addEventListener('mouseenter', () => {
card.querySelector('.card-title').style.textShadow = '0 0 15px var(--neon-green)';
});
card.addEventListener('mouseleave', () => {
card.querySelector('.card-title').style.textShadow = 'none';
});
});
});
</script>
</body>
</html>