mirror of
https://github.com/resendecode/nuitdelinfo.git
synced 2026-05-13 17:21:55 +00:00
Edit jeu.html
This commit is contained in:
@@ -17,20 +17,55 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-family: 'Manrope', extrabold;
|
font-family: 'Manrope', sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
font-size: 64px;
|
font-size: 64px;
|
||||||
color: white;
|
color: #0E3B43;
|
||||||
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 18px;
|
font-family: 'Manrope', sans-serif;
|
||||||
margin-bottom: 30px;
|
font-weight: 300;
|
||||||
|
font-size: 20px;
|
||||||
|
color: #0E3B43;
|
||||||
}
|
}
|
||||||
|
|
||||||
#santa {
|
#santa {
|
||||||
font-size: 72px;
|
font-size: 72px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
color: darkred;
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow-container {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow_right {
|
||||||
|
font-size: 36px;
|
||||||
|
animation: swing_arrow_right 1s infinite alternate;
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow_left {
|
||||||
|
font-size: 36px;
|
||||||
|
animation: swing_arrow_left 1s infinite alternate;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes swing_arrow_right {
|
||||||
|
0% {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translateX(10px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes swing_arrow_left {
|
||||||
|
0% {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translateX(-10px);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
@@ -40,10 +75,13 @@
|
|||||||
<p>En cette période festive, pensons à la nature et à la durabilité.</p>
|
<p>En cette période festive, pensons à la nature et à la durabilité.</p>
|
||||||
<p>Faites un geste écologique pendant les fêtes ! 🌲</p>
|
<p>Faites un geste écologique pendant les fêtes ! 🌲</p>
|
||||||
|
|
||||||
<div id="santa" onclick="showEasterEgg()">→ 🎅 ←</div>
|
<div class="arrow-container">
|
||||||
|
<p class="arrow_right">→</p>
|
||||||
|
<div id="santa" onclick="showEasterEgg()">🎅</div>
|
||||||
|
<p class="arrow_left">←</p>
|
||||||
|
</div>
|
||||||
<script>
|
<script>
|
||||||
function showEasterEgg() {
|
const showEasterEgg = () => {
|
||||||
alert("Easter Egg : C'est le moment de penser à des cadeaux éco-friendly !");
|
alert("Easter Egg : C'est le moment de penser à des cadeaux éco-friendly !");
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+2
-1
@@ -30,10 +30,11 @@
|
|||||||
<h2>distinguons la réalité<br>des idées reçues.</h2>
|
<h2>distinguons la réalité<br>des idées reçues.</h2>
|
||||||
<p id="sous-pres">
|
<p id="sous-pres">
|
||||||
Défiez les idées reçues sur l'écologie avec notre quiz captivant !
|
Défiez les idées reçues sur l'écologie avec notre quiz captivant !
|
||||||
|
</br>
|
||||||
Testez-vous dès maintenant pour une expérience éducative et
|
Testez-vous dès maintenant pour une expérience éducative et
|
||||||
amusante.
|
amusante.
|
||||||
</p>
|
</p>
|
||||||
<button id="btnjouer"><a href="./jouer.html"></a>Essayer ce jeu</button>
|
<button id="btnjouer"><a href="./jouer.html">Essayer ce jeu</a></button>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+4
-2
@@ -45,11 +45,13 @@
|
|||||||
<section id="left">
|
<section id="left">
|
||||||
<img class="image" id="imgleft" src="./img/imgleft.png"
|
<img class="image" id="imgleft" src="./img/imgleft.png"
|
||||||
alt="imgleft">
|
alt="imgleft">
|
||||||
|
<div class="text-overlay">Votre texte ici</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="right">
|
<section id="right">
|
||||||
<img class="image" id="imgright" src="./img/imgright.webp"
|
<img class="image" id="imgright" src="./img/imgright.webp"
|
||||||
alt="imgright">
|
alt="imgright">
|
||||||
|
<div class="text-overlay">Votre texte ici</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -85,10 +87,10 @@
|
|||||||
leftSection.classList.remove('hide');
|
leftSection.classList.remove('hide');
|
||||||
});
|
});
|
||||||
|
|
||||||
let score = 20;
|
|
||||||
|
|
||||||
|
let score = 0;
|
||||||
function augmenterCompteur() {
|
function augmenterCompteur() {
|
||||||
score += 5;
|
score++;
|
||||||
|
|
||||||
if (score >= 5) {
|
if (score >= 5) {
|
||||||
document.getElementById('star1').style.visibility = 'visible';
|
document.getElementById('star1').style.visibility = 'visible';
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
Liste des easter eggs :
|
||||||
|
|
||||||
|
- Joyeux noël écologique ! : Répondez juste à toutes les questions du quizz
|
||||||
|
et une nouvelle page s'ouvre.
|
||||||
+11
-9
@@ -93,14 +93,18 @@ section a {
|
|||||||
/*background-image: url('');*/
|
/*background-image: url('');*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.answer {
|
.text-overlay {
|
||||||
margin-top: 50vh;
|
position: absolute;
|
||||||
text-align: center;
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
font-size: 24px;
|
||||||
font-family: 'inter', sans-serif;
|
font-family: 'inter', sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 40px;
|
text-align: center;
|
||||||
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
padding: 10px;
|
||||||
color: white;
|
color: white;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.question {
|
.question {
|
||||||
@@ -108,8 +112,6 @@ section a {
|
|||||||
top: 0;
|
top: 0;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
|
|
||||||
|
|
||||||
background-color: #FFF1DD;
|
background-color: #FFF1DD;
|
||||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
@@ -122,14 +124,14 @@ section a {
|
|||||||
.question h2 {
|
.question h2 {
|
||||||
font-family: 'inter', sans-serif;
|
font-family: 'inter', sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 40px;
|
font-size: 35px;
|
||||||
color: black;
|
color: black;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.question p {
|
.question p {
|
||||||
font-family: 'Manrope', sans-serif;
|
font-family: 'Manrope', sans-serif;
|
||||||
font-size: 20px;
|
font-size: 25px;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ main {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-family: 'Manrope', extrabold;
|
font-family: 'Manrope', sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
font-size: 64px;
|
font-size: 64px;
|
||||||
color: white;
|
color: white;
|
||||||
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||||
@@ -25,14 +26,16 @@ h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-family: 'Manrope', extrabold;
|
font-family: 'Manrope', sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
font-size: 48px;
|
font-size: 48px;
|
||||||
color: white;
|
color: white;
|
||||||
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
#sous-pres {
|
#sous-pres {
|
||||||
font-family: 'Manrope', bold;
|
font-family: 'Manrope', sans-serif;
|
||||||
|
font-weight: 300;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
color: white;
|
color: white;
|
||||||
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||||
@@ -45,7 +48,7 @@ h2 {
|
|||||||
height: 59px;
|
height: 59px;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
margin-top: 90px;
|
margin-top: 90px;
|
||||||
font-family: 'Manrope', bold;
|
font-family: 'Manrope', sans-serif;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
|||||||
Reference in New Issue
Block a user