From 61a129a3feea21d7a6b8d11c218aaf21d3026cdc Mon Sep 17 00:00:00 2001
From: quipiq <72353621+quipiq@users.noreply.github.com>
Date: Sat, 16 Apr 2022 11:27:55 +0200
Subject: [PATCH] fin js et mise en place des casino
---
Index.html | 17 +----------------
test_jl/main.js | 15 +++++++++------
test_jl/test.css | 31 +++++++++++++++++++++++++++----
test_jl/test.html | 1 +
4 files changed, 38 insertions(+), 26 deletions(-)
diff --git a/Index.html b/Index.html
index 5f6b4a2..eef4650 100644
--- a/Index.html
+++ b/Index.html
@@ -6,7 +6,7 @@
-
casino 77
+ casino 777
@@ -37,21 +37,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/test_jl/main.js b/test_jl/main.js
index 16beb24..2ba9cc5 100644
--- a/test_jl/main.js
+++ b/test_jl/main.js
@@ -56,6 +56,7 @@ function gain(nb){
function affiche(){
console.log('Vous avez gagné %d jetons', gains);
console.log('\nIl vous reste %d jetons, et il reste %d jetons dans le bac de la machine.\n', argent, bank);
+ gains=0;
}
@@ -77,18 +78,20 @@ document.querySelector("#spinner").addEventListener("click", spin);
async function spin() {
init(false, 1, 2);
- for (const door of doors) {
- const boxes = door.querySelector(".boxes");
- const duration = parseInt(boxes.style.transitionDuration);
- boxes.style.transform = "translateY(0)";
- await new Promise((resolve) => setTimeout(resolve, duration * 100));
+ if(argent>0){
+ for (const door of doors) {
+ const boxes = door.querySelector(".boxes");
+ const duration = parseInt(boxes.style.transitionDuration);
+ boxes.style.transform = "translateY(0)";
+ await new Promise((resolve) => setTimeout(resolve, duration * 100));
+ }
}
}
function init(firstInit, groups, duration) {
for (const door of doors) {
const boxes = door.querySelector(".boxes");
const boxesClone = boxes.cloneNode(false);
- const pool = ["❓"];
+ const pool = ["?"];
if (!firstInit) {
const arr = [];
for (let n = 0; n < (groups > 0 ? groups : 1); n++) {
diff --git a/test_jl/test.css b/test_jl/test.css
index d8b7bea..e365c62 100644
--- a/test_jl/test.css
+++ b/test_jl/test.css
@@ -1,13 +1,11 @@
#app {
width: 100%;
height: 100%;
-
- background: #212121;
-
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
+ margin-top: 15%;
}
.doors {
@@ -35,7 +33,6 @@
display: flex;
justify-content: center;
align-items: center;
-
font-size: 3rem;
}
@@ -57,4 +54,30 @@ button {
bottom: 0;
width: 100%;
text-align: center;
+}
+
+@font-face {
+ font-family: "Ma Super Fonte";
+ src: url('../casino.TTF');
+}
+
+body{
+ color: rgb(137,46,255);
+ font-family: "Ma Super Fonte";
+ text-shadow: 0 0 7px rgb(147,112,219),
+ 0 0 25px rgb(147,112,219),
+ 0 0 30px rgb(147,112,219),
+ 0 0 35px rgb(147,112,219),
+ 0 0 40px rgb(147,112,219),
+ 0 0 50px rgb(147,112,219),
+ 0 0 60px rgb(147,112,219)
+}
+
+h1{
+ color: rgb(137,46,255);
+ text-shadow: 0 0 7px rgb(147,112,219),
+ 0 0 10px rgb(147,112,219),
+ 0 0 25px rgb(147,112,219),
+ 0 0 35px rgb(147,112,219),
+ 0 0 45px rgb(147,112,219)
}
\ No newline at end of file
diff --git a/test_jl/test.html b/test_jl/test.html
index 0d643d4..d6e41b7 100644
--- a/test_jl/test.html
+++ b/test_jl/test.html
@@ -36,6 +36,7 @@
+