diff --git a/site/interface/site/index.html b/site/interface/site/index.html index 1301ac0..c5eb426 100644 --- a/site/interface/site/index.html +++ b/site/interface/site/index.html @@ -41,7 +41,6 @@

THREEJS

-
@@ -52,10 +51,50 @@
-

EKIP

+
+
+ Tom +

Tom, tomoron

+

Partie Backend

+
+

Tom est spécialisé en développement backend et travaille principalement avec Node.js et MongoDB.

+
+
+
+ Mathis +

Mathis, madegryc

+

Partie Frontend / Design

+
+

Tom est spécialisé en développement backend et travaille principalement avec Node.js et MongoDB.

+
+
+
+ Eddy +

Eddy, edbernar

+

Partie Midend

+
+

Tom est spécialisé en développement backend et travaille principalement avec Node.js et MongoDB.

+
+
+
+ Hugo +

Hugo, hubourge

+

Partie jeu

+
+

Tom est spécialisé en développement backend et travaille principalement avec Node.js et MongoDB.

+
+
+
\ No newline at end of file diff --git a/site/interface/site/main.js b/site/interface/site/main.js index 49b6fe1..ce180b5 100644 --- a/site/interface/site/main.js +++ b/site/interface/site/main.js @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* main.js :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: marvin +#+ +:+ +#+ */ +/* By: madegryc +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/07/30 13:50:35 by edbernar #+# #+# */ -/* Updated: 2024/08/14 11:32:50 by marvin ### ########.fr */ +/* Updated: 2024/08/14 18:25:04 by madegryc ### ########.fr */ /* */ /* ************************************************************************** */ @@ -19,7 +19,7 @@ window.addEventListener('scroll', function() { const rotationAngle = scrollPosition * 0.1; // Ajustez ce facteur pour contrôler l'angle de rotation const parallaxElement = document.querySelector('#firstBall'); const parallaxElement2 = document.querySelector('#secondBall'); - const parallaxSpeed = scrollPosition * -0.15; // Ajustez ce facteur pour ralentir le défilement + const parallaxSpeed = scrollPosition * -0.17; // Ajustez ce facteur pour ralentir le défilement // Appliquer la rotation en fonction de la position de défilement parallaxElement.style.transform = `translateX(-50%) translateY(${-parallaxSpeed}px) rotate(${rotationAngle}deg)`; diff --git a/site/interface/site/style/edbernard.png b/site/interface/site/style/edbernard.png new file mode 100644 index 0000000..8fda234 Binary files /dev/null and b/site/interface/site/style/edbernard.png differ diff --git a/site/interface/site/style/home.css b/site/interface/site/style/home.css index 876f7af..0460d24 100644 --- a/site/interface/site/style/home.css +++ b/site/interface/site/style/home.css @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* home.css :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: marvin +#+ +:+ +#+ */ +/* By: madegryc +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/08/07 12:00:55 by edbernar #+# #+# */ -/* Updated: 2024/08/14 12:39:25 by marvin ### ########.fr */ +/* Updated: 2024/08/14 18:55:27 by madegryc ### ########.fr */ /* */ /* ************************************************************************** */ @@ -194,11 +194,86 @@ body { background-color: #f0f0f0; } +.team { + display: flex; + gap: 40px; + padding-inline: 200px; + padding-block: 200px; + justify-content: center; +} + +.team h2 { + color: white; + font-family: "Poppins", sans-serif; + font-weight: 500; + font-style: normal; + font-size: 30px; +} + +.team-member { + max-width: 350px; + transition: transform 0.3s ease; +} + +.team-member:hover { + transform: scale(1.2); +} + + +.team-member:not(:hover) { + transform: scale(0.8); +} + +.team-photo { + width: 100%; + height: auto; +} + +.info { + position: absolute; + bottom: 0; + left: 50%; + transform: translateX(-50%) translateY(10px); + background-color: rgba(0, 0, 0); + padding: 10px; + width: 100%; + opacity: 0; + transition: transform 0.3s ease, opacity 0.3s ease; +} + +.team-member:hover .info { + transform: translateX(-50%) translateY(25%); + opacity: 1; +} + footer { - padding: 15px; - display: flex; + padding: 25px; overflow: hidden; - height: 200px; + height: 150px; background-color: white; + font-family: "Poppins", sans-serif; + font-weight: 500; + font-style: normal; color: #020202; - } \ No newline at end of file +} + +.footer-content { + display: flex; + justify-content: space-between; + align-items: center; +} + +.footer-left h1 { + font-size: 1.5em; + font-style: italic; + font-weight: bold; + margin: 0; +} + +.footer-left p { + color: #afafaf; +} + +.footer-right p { + font-weight: bold; +} \ No newline at end of file diff --git a/site/interface/site/style/hubourge.png b/site/interface/site/style/hubourge.png new file mode 100644 index 0000000..124ce88 Binary files /dev/null and b/site/interface/site/style/hubourge.png differ diff --git a/site/interface/site/style/madegryc.png b/site/interface/site/style/madegryc.png new file mode 100644 index 0000000..2bed972 Binary files /dev/null and b/site/interface/site/style/madegryc.png differ diff --git a/site/interface/site/style/tomoron.png b/site/interface/site/style/tomoron.png new file mode 100644 index 0000000..36eb6f7 Binary files /dev/null and b/site/interface/site/style/tomoron.png differ