This commit is contained in:
jleroy2023
2025-05-19 09:33:10 +02:00
parent 2b2b78738e
commit 9cd15b0439
8 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
<div
class="profile-container w-64 h-64 rounded-full overflow-hidden border-4 border-primary-dark dark:border-primary-light shadow-xl transition duration-300 transform hover:scale-105 profile-shadow">
<img
src="img/pp.jpg"
src="img/pp/pp3.png"
alt="Johan Leroy"
class="w-full h-full object-cover"
/>

View File

@@ -53,7 +53,7 @@ export class HomeComponent implements OnInit, AfterViewInit, OnDestroy {
const x = Math.random() * 100; // Position en %
const y = Math.random() * 100 + 50; // Position en %
const opacity = Math.random() * 0.3 + 0.1; // Opacité entre 0.1 et 0.4
const speed = Math.random() * 0.5 + 0.2; // Vitesse variable
const speed = Math.random() * 0.15 + 0.05; // Vitesse variable
const particleEl = document.createElement('div');
particleEl.style.position = 'absolute';