-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (74 loc) · 3.31 KB
/
index.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cachipún</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<main class="main">
<h1 class="main__title">Cachipún against the machine</h1>
<div class="rondas">
<button class="rondas__btn btn" onclick="rondas()" id="rondasBtn">
¿Cuántas rondas quieres jugar?
</button>
<p class="rondas__veredicto" id="rondasVeredicto"></p>
</div>
<div class="jugadas__container">
<div class="jugadas" id="jugadas">
<h3 class="jugadas__title">Escoge tu jugada:</h3>
<div class="jugadas__botones">
<button onclick="jugarUno()" value="1" class="input-1 btn btn--move">
🥌<br />
piedra
</button>
<button onclick="jugarDos()" value="2" class="input-2 btn btn--move">
🧻<br />
papel
</button>
<button onclick="jugarTres()" value="3" class="input-3 btn btn--move">
✂<br />
tijera
</button>
</div>
</div>
</div>
<div class="juego">
<div class="juego__info">
<h2 class="juego__title">Jugador</h2>
<p class="juego__move" id="movidaJugador"></p>
</div>
<div class="juego__info">
<h2 class="juego__title">Computadora</h2>
<p class="juego__move" id="movidaComputadora"></p>
</div>
<div class="juego__info">
<h2 class="juego__title">Resultado</h2>
<p class="juego__move" id="resultado"></p>
</div>
</div>
<section class="main__botones-tablero">
<div class="main__botones">
<!-- <button onclick="jugar()">Jugar</button> -->
<button onclick="reset()" class="btn main__botones-reset" id="reset" disabled>
Jugar de nuevo 😀
</button>
</div>
<div class="tablero">
<p class="tablero__text">Intentos: <span id="attempts">0</span></p>
<p class="tablero__text">Ganadas: <span id="wins">0</span></p>
<p class="tablero__text">Perdidas: <span id="losses">0</span></p>
<p class="tablero__text">Empates: <span id="draws">0</span></p>
</div>
</section>
</main>
<footer class="footer">
<p>
© 2024 | Hecho con ❤️ por
<a href="https://github.com/cristiandpto23" target="_blank" rel="noopener noreferrer">cristiandpto23</a>
</p>
</footer>
<script src="./assets/js/script.js"></script>
</body>
</html>