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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

BIN
public/img/pp/origin.JPEG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 KiB

BIN
public/img/pp/pp1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 801 KiB

BIN
public/img/pp/pp2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

BIN
public/img/pp/pp3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

View File

@@ -19,7 +19,7 @@
<div <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"> 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 <img
src="img/pp.jpg" src="img/pp/pp3.png"
alt="Johan Leroy" alt="Johan Leroy"
class="w-full h-full object-cover" 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 x = Math.random() * 100; // Position en %
const y = Math.random() * 100 + 50; // 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 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'); const particleEl = document.createElement('div');
particleEl.style.position = 'absolute'; particleEl.style.position = 'absolute';