-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
113 lines (89 loc) · 3.09 KB
/
app.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
const tijera = document.querySelector('#tijera');
const paper = document.querySelector('#paper')
const piedra = document.querySelector('#piedra')
const again = document.querySelector('#playAgain')
const hide = document.getElementsByClassName('hide')
var array = ["Scissors", "Paper", "Rock"]
const button = document.querySelector('button')
const eleccion = document.querySelector('#eleccion')
const resultado = document.querySelector('#resultado')
const mensajeResultado = document.querySelector('h2')
const puntos = document.querySelector('#puntos')
var puntuacion = 0
tijera.addEventListener('click', function () {
mostrarIcon('Scissors')
}
)
paper.addEventListener('click', function () {
mostrarIcon('Paper')
}
)
piedra.addEventListener('click', function () {
mostrarIcon('Rock')
}
)
again.addEventListener('click', function () {
for (var i = 0; i < hide.length; i ++) {
hide[i].style.display = 'none';
}
eleccion.style.visibility = "visible";
})
function mostrarIcon(elejido) {
document.querySelector('#Ele' + elejido).style.display = 'block'
eleccion.style.visibility = "hidden";
resultado.style.display = "block";
randomIcon(elejido)
}
function randomIcon(elejido) {
var random = array[Math.floor(Math.random() * array.length)];
document.querySelector('#AI' + random).style.display = 'block';
document.querySelector('#show').style.display = 'block'
if (elejido == random) {
mensajeResultado.innerHTML = "Empate"
} else if (elejido == "Scissors" && random == "Rock") {
mensajeResultado.innerHTML = "Has Perdido"
puntuacion--;
} else if (elejido == "Scissors" && random == "Paper") {
mensajeResultado.innerHTML = "Has Ganado"
puntuacion++;
}
else if (elejido == "Rock" && random == "Scissors") {
mensajeResultado.innerHTML = "Has Ganado"
puntuacion++;
} else if (elejido == "Rock" && random == "Paper") {
mensajeResultado.innerHTML = "Has Perdido"
puntuacion--;
}
else if (elejido == "Paper" && random == "Rock") {
mensajeResultado.innerHTML = "Has Ganado"
puntuacion++;
} else if (elejido == "Paper" && random == "Scissors") {
mensajeResultado.innerHTML = "Has Perdido"
puntuacion--;
}
puntos.innerHTML = puntuacion;
/*
if (elejido === "Paper") {
if (random === "Rock") {
puntuacion++;
document.querySelector('#puntos').innerHTML = puntuacion;
} else {
if (random === "Scissors") {
puntuacion--;
document.querySelector('#puntos').innerHTML = puntuacion;
}
}
}
if (elejido === "Scissors") {
if (random === "Rock") {
puntuacion--;
document.querySelector('#puntos').innerHTML = puntuacion;
} else {
if (random === "Paper") {
puntuacion++;
document.querySelector('#puntos').innerHTML = puntuacion;
}
}
}
*/
}