forked from gabyfdez90/wheel_of_doom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jackpot.html
89 lines (88 loc) · 3.02 KB
/
jackpot.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
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/jackpot.css" />
<link rel="stylesheet" href="./styles/jackpotHorizontal.css"/>
<title>Purga Coder</title>
</head>
<body>
<div class="page-container">
<header class="logo">
<img src="./images/LOGO.png" alt="LOGO" class="logo" width="100px" />
</header>
<section class="section-container">
<div class="wrapper-container">
<div class="form-container">
<form class="input-container">
<input
id="nombre"
type="text"
name="YOUR NAME"
class="yourname-button"
placeholder="YOUR NAME"
/>
<button onclick="insertarNombre(event)" class="submit-button">
<b>SUBMIT</b>
</button>
<button onclick="resetear(event)" class="submit-button">
<b>RESET</b>
</button>
</form>
<button onclick="killSomeone(event)" class="kill-button kill-button-md">
<b>LET'S KILL SOMEONE</b>
</button>
</div>
<div class="tragaperras-container">
<img
src="./images/JACKPOT DE VERDAD.png"
alt="jackpot"
width="320px"
class="jackpot"
/>
<img
src="./images/ESTRELLAS.png"
alt="estrellas"
width="267px"
class="estrellas"
/>
<div id="ventanas">
<div id="ventana1" class="ventana1">
<img name="imagen" id="asesinos" class="asesinos" />
</div>
<div id="ventana2" class="ventana2">
<img name="muertes" id="muertes" class="muertes" />
</div>
<div id="ventana3" class="ventana3">
<p id="coders" class="coders" name="coders"></p>
</div>
</div>
</div>
</div>
<button onclick="killSomeone(event)" class="kill-button kill-button-sm" id="kills">
<b>LET'S KILL SOMEONE</b>
</button>
<div class="listas-container">
<div class="lista-alive-container">
<h3>STILL ALIVE</h3>
<ul id="lista-nombres" class="listaCoders"></ul>
</div>
<div class="lista-dead-container">
<h3>DEAD CODERS</h3>
<ul id="lista-muertas" class="listaMuertas"></ul>
</div>
</div>
</section>
</div>
<div id="velo">
<div id="pop_up">
<img src="./images/pop_up.png" width="350px">
<div id="mensaje">Y nuestra muerta es...</div>
<button id="boton" class="boton">Try Again</button>
</div>
</div>
<script src="tragaperras.js"></script>
</body>
</html>