-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
61 lines (51 loc) · 1.73 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
let formulaire = document.querySelector('#formulaire');
let input = document.querySelector('#prix');
let error = document.querySelector("small");
let regame = document.querySelector('#regame');
error.style.display = "none";
regame.style.display = "none";
let nbAleatoire = Math.floor(Math.random() * 1001);
let coups = 0;
let nbChoisi;
function verifier(nombre) {
let instruction = document.createElement('div');
if(nombre < nbAleatoire) {
// C'est plus
instruction.textContent = "#" + coups + " ( " + nombre + " ) C'est plus !";
instruction.className = "instruction plus";
}
else if(nombre > nbAleatoire) {
// C'est moins
instruction.textContent = "#" + coups + " ( " + nombre + " ) C'est moins !";
instruction.className = "instruction moins";
}
else {
// Félicitations vous avez trouvé le juste prix !
instruction.textContent = "#" + coups + " ( " + nombre + " ) Félicitations vous avez trouvé le juste prix !";
instruction.className = "instruction fini";
input.disabled = true;
regame.style.display = "inline";
}
// Ajouter l'élément devant les autres
document.querySelector('#instructions').prepend(instruction);
}
input.addEventListener('keyup', () => {
if (isNaN(input.value)) {
error.style.display = "inline";
} else {
error.style.display = "none";
}
})
formulaire.addEventListener('submit', (e) => {
e.preventDefault();
if (isNaN(input.value) || input.value == '') {
input.style.borderColor = "red";
}
else {
coups ++;
input.style.borderColor = "silver";
nbChoisi = input.value;
input.value = '';
verifier(nbChoisi);
}
})