-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
86 lines (81 loc) · 2.78 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
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/estilos.css">
<title>Hoy como Antes</title>
</head>
<body class="index">
<!-- Botones principales -->
<button id="menu" class="btn-main btn-menu" type="button" name="button">
<span>ME <br> NÚ</span>
</button>
<button onclick="playAu()" class="btn-main btn-sound" type="button" name="button"></button>
<audio preload='metadata' autoplay id="auIntro">
<source src="audio/porFavor.mp3" type="audio/mpeg">
Tu navegador web no soporta la reproduccion de audio.
</audio>
<!-- Video de fondo -->
<video autoplay loop muted poster="" id="video">
<source src="video/intro.mp4" type="video/mp4">
</video>
<!-- Contenedor -->
<div class="index__content container-fluid">
<div class="row text-center align-items-center h-100">
<div class="col-12">
<div class="row">
<div class="col-12 mb-5">
<h1>PÓNGASE CÓMODO</h1>
</div>
<div class="col-12 pt-5">
<a href="descripcion.html" class="btn-main">
<span>Hoy como Antes</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Modal menú -->
<div id="modalMenu" class="menu animated">
<button id="volver" class="btn-main btn-menu" type="button" name="button">
<span>VOL <br> VER</span>
</button>
<div class="menu__content container-fluid">
<div class="row h-75">
<div class="menu__content--right col-1"></div>
<div class="col-10">
<ul class="menu__list">
<li><a href="descripcion.html">HOY COMO ANTES</a></li>
<li><a href="pelicula.html">PELÍCULA</a></li>
<li><a href="eventos.html">EVENTOS</a></li>
<li><a href="contacto.html">DÉJANOS TU OPINIÓN</a></li>
<li><a href="referencias.html">REFERENCIAS</a></li>
<li><a href="sobre_mi.html">AIXA ECHEVERRY GONZÁLEZ</a></li>
<li><a href="contacto.html">CONTACTO</a></li>
<li><a href="colaboradores.html">COLABORADORES</a></li>
<li><a href="index.html">INTRO</a></li>
</ul>
</div>
<div class="menu__content--left col-1"></div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="js/main.js" charset="utf-8"></script>
<script type="text/javascript">
function playAu(e){
audioAu = document.getElementById("auIntro");
if(audioAu.paused){
audioAu.play();
} else {
audioAu.pause();
}
}
</script>
</body>
</html>