-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame1.html
More file actions
92 lines (85 loc) · 3.16 KB
/
game1.html
File metadata and controls
92 lines (85 loc) · 3.16 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Java-daba-dooS</title>
<link rel="shortcut icon" href="img/favicon.png">
<link href="https://fonts.googleapis.com/css?family=Caesar+Dressing|Passion+One" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/game1.css">
</head>
<body>
<header class="header">
<a href="index.html">
<img class="logo" src="img/logo.png" alt="Logotipo Java-daba-dooS">
</a>
<a href="index.html" class="menu">Menu principal</a>
</header>
<main class="containerNumbersMain">
<div class="container">
<h1 class="title">Bronto-número</h1>
<div class="containerNumbers">
<div class="labelNumbers">
<label>Escribe un numero entre el 1 y cachichien (99)</label>
</div>
<input class="input" id="number" type="number" name="number" value="" class="menuNumbers">
<button id="button" class="button" type="button" name="button" value="FadeIn" onclick="gameNumber()">¡Dale caña!</button>
<p class="textError" id="textError">¿Acertarás a la primera?</p>
<audio id="audioJava" src="audio/audio.mp3"></audio>
</div>
</div>
<div class="watchInst" id="domInst">
<img src="img/instrucciones.png" alt="">
<p>Instrucciones</p>
</div>
</main>
<div class="modal">
<div class="win">
<div class="dino">
<img class="dino-gif" src="img/bilma.gif" alt="">
</div>
<div class="modal-text">
<h4 class="congrats">¡Has ganado!</h4>
<p class="score-game1"></p>
<div class="buttons">
<div class="reset">
<a href="game1.html">
<img src="img/reset.png" alt="">
<p>¡Quiero otra!</p>
</a>
</div>
<div class="reset">
<a href="index.html">
<img src="img/menu.png" alt="">
<p>Menu</p>
</a>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<p class="copyright">
Desarrollado por Java-daba-dooS team para el II spring de <a class="footer-link" href="http://adalab.es/" target="_blank">Adalab</a>
</p>
</footer>
<div class="pop-up">
<div class="window">
<p class="instructions">Instrucciones</p>
<p class="rules">Reglas:</p>
<div class="containerRules">
<p class="poprInstr">1. Escribe un número entre 1 y 99</p>
<p class="poprInstr">2. Haz click en el botón dale caña para comprobar</p>
<p class="poprInstr">3. Sigue las pistas que te aparecen</p>
<p class="poprInstr">4. Elige un nuevo número hasta que aciertes</p>
<p class="poprInstr">¡Suerte!</p>
</div>
<div class="buttonInstructions" id="button-instructions">
<p class="button1" id="close">Let's Daba-do-it!</p>
</div>
</div>
</div>
<script src="scripts/game1.js" charset="utf-8"></script>
</body>
</html>