Téléverser les fichiers vers "/"
This commit is contained in:
114
demo-modding.html
Normal file
114
demo-modding.html
Normal file
@@ -0,0 +1,114 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>DÉMO : Modding Minecraft - BARUA Aditta</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
|
||||
|
||||
<style>
|
||||
.demo-section {
|
||||
min-height: 80vh;
|
||||
padding: 80px 10%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
border-radius: 0;
|
||||
margin-bottom: 0;
|
||||
backdrop-filter: blur(8px);
|
||||
}
|
||||
.modding-stats {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
margin: 40px 0;
|
||||
}
|
||||
.stat-card {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 8px;
|
||||
width: 200px;
|
||||
}
|
||||
.stat-card h3 {
|
||||
color: #00ffcc;
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.timeline {
|
||||
margin-top: 60px;
|
||||
padding-left: 20px;
|
||||
border-left: 3px solid #00aaff;
|
||||
}
|
||||
.timeline-event {
|
||||
position: relative;
|
||||
padding: 10px 0 10px 20px;
|
||||
}
|
||||
.timeline-event::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: -12px;
|
||||
top: 15px;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
border-radius: 50%;
|
||||
background: #00ffcc;
|
||||
border: 2px solid white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<canvas id="background-canvas"></canvas>
|
||||
<header id="page-header"></header>
|
||||
|
||||
<main>
|
||||
<section id="demo-modding" class="demo-section" data-aos="fade-up">
|
||||
<h2>Modding Minecraft : L'Origine de mes Compétences</h2>
|
||||
<p class="subtitle">Ce projet illustre la découverte de la programmation orientée objet (POO) à travers le développement de plugins et de mods.</p>
|
||||
|
||||
<div class="modding-stats">
|
||||
<div class="stat-card" data-aos="zoom-in" data-aos-delay="100">
|
||||
<h3>20+</h3>
|
||||
<p>Plugins/Mods Créés</p>
|
||||
</div>
|
||||
<div class="stat-card" data-aos="zoom-in" data-aos-delay="200">
|
||||
<h3>Java</h3>
|
||||
<p>Langage Principal (POO)</p>
|
||||
</div>
|
||||
<div class="stat-card" data-aos="zoom-in" data-aos-delay="300">
|
||||
<h3>2 Ans</h3>
|
||||
<p>Expérience de codage</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 style="margin-top: 50px;">Chronologie de Développement</h3>
|
||||
<div class="timeline">
|
||||
<div class="timeline-event">
|
||||
<h4 style="color: #00ffcc;">2018 : Débuts en Java (Spigot API)</h4>
|
||||
<p>Apprentissage des bases de la Programmation Orientée Objet (Classes, Héritage, Polymorphisme) pour interagir avec l'API du jeu.</p>
|
||||
</div>
|
||||
<div class="timeline-event">
|
||||
<h4 style="color: #00ffcc;">2020 : Gestion de Base de Données</h4>
|
||||
<p>Intégration de bases de données (MySQL) pour les systèmes de persistance (inventaires, statistiques utilisateurs).</p>
|
||||
</div>
|
||||
<div class="timeline-event">
|
||||
<h4 style="color: #00ffcc;">2022 : Optimisation et Performances</h4>
|
||||
<p>Focus sur la gestion des tâches asynchrones (`AsyncTasks`) pour prévenir les freezes (lag) et optimiser la charge serveur, compétence cruciale en BTS CIEL.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p style="text-align: center; margin-top: 80px; opacity: 0.6;">
|
||||
Un projet personnel qui a développé ma rigueur technique et ma compréhension des frameworks.
|
||||
<br><a href="projects.html" style="color: #00c8ff;">Retour aux Projets</a>
|
||||
</p>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer id="page-footer"></footer>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
|
||||
<script>AOS.init();</script>
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user