-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (69 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./style.css" />
<link rel="shortcut icon" href="./favicon.ico">
<title>No te duermas</title>
</head>
<body>
<!--El autoplay hay ocasiones que no funciona puede que sea por el navegador-->
<audio id="audio">
<source src="music/background.mp3"/>
</audio>
<button id="music-play" class="btn-music">
<!-- Lo he cambiado por el icono que ha hecho Aitor :) -->
<span id="sound">
<img height="65" src="./imgs/sound-on.png" alt="Turn the music on">
</span>
<span id="mute">
<img height="65" src="./imgs/sound-off.png" alt="Turn the music off">
</span>
</button>
<label class="volume" for="volume">
Volumen:
</label>
<input id="volume" class="btn-volume" type="range" min="0" max="1" step="0.1">
<button class="button btn-sleep">
Dormir
</button>
<span class="sleep-message">
Comienza el día de nuevo
</span>
<button id="faq-button" class="faq-button">
<img height="32" src="./imgs/help.png" alt="Información sobre el juego">
</button>
<section id="faq" class="faq-box">
<p class="faq">
Este es un juego narrativo donde el rumbo de la historia la dictas con tus decisiones.<br>
<!--Todo comienza cuando despiertas y recuerdas que hoy es un día importante, <br> has quedado con una persona importante para tí.<br>
Y llegas tarde. <br>-->
Deberás tomar las decisiones que creas correctas recordando que el fin es el principio, pero no hay un único fin.
</p>
<p><a target="_blank" href="./credits.pdf">Créditos</a></p>
</section>
<main id="app" class="dark"></main>
<div class="startscreen box">
<svg class="zzz" width="80" height="80" viewBox="0 0 209 209" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="z1" fill-rule="evenodd" clip-rule="evenodd" d="M0 208.321H40.0305V200.198H13.5753L40.0305 173.743V168H0V176.122H26.1652L0 202.287V208.321Z" fill="white"/>
<path id="z2" fill-rule="evenodd" clip-rule="evenodd" d="M84 124.321H124.031V116.198H97.5753L124.031 89.7432V84H84V92.1221H110.165L84 118.287V124.321Z" fill="white"/>
<path id="z3" fill-rule="evenodd" clip-rule="evenodd" d="M168 40.3206H208.03V32.1985H181.575L208.03 5.74333V0H168V8.12214H194.165L168 34.2874V40.3206Z" fill="white"/>
</svg>
<h1>No te duermas</h1>
<button id="startgame" class="button btn-play" type="button">Play</button>
</div>
<div class="box lvl lvl0">
<p class="text"></p>
<div id="options">
<ul></ul>
</div>
<button class="nextText button">Siguiente</button>
</div>
<script type="module" src="./app.js"></script>
</body>
</html>