-
Notifications
You must be signed in to change notification settings - Fork 0
/
precios.html
153 lines (149 loc) · 5.33 KB
/
precios.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html>
<head>
<title>Precios de tus mejores guitarras!!</title>
<meta charset="utf-8"/>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700|Allerta' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/invie.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
</head>
<body class="precios">
<header id="header" class="header background"> <!-- header -->
<div class="contenedor">
<figure class="logotipo"> <!-- logotipo -->
<img src="images/invie.png" width="186" height="60" alt="Invie logotipo"/>
</figure>
<span class="burguer-button icon-menu" id="burguer-button"></span>
<nav class="menu" id="menu"> <!-- menu -->
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="index.html#guitarras">Guitarras</a>
</li>
<li>
<a href="precios.html">Precios</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="tabla">
<div class="contenedor">
<table>
<thead>
<tr>
<th>Modelo</th>
<th>Precio</th>
<th>Descripción</th>
<th>Modelo</th>
<th>Precio</th>
<th>Descripción</th>
</tr>
</thead>
<tbody>
<tr>
<td>Invie classic</td>
<td>$100000</td>
<td>Una guitarra muy pro</td>
<td>Invie classic</td>
<td>$100000</td>
<td>Una guitarra muy pro</td>
</tr>
<tr>
<td>Invie classic</td>
<td>$100000</td>
<td>Una guitarra muy pro</td>
<td>Invie classic</td>
<td>$100000</td>
<td>Una guitarra muy pro</td>
</tr>
<tr>
<td>Invie classic</td>
<td>$100000</td>
<td>Una guitarra muy pro</td>
<td>Invie classic</td>
<td>$100000</td>
<td>Una guitarra muy pro</td>
</tr>
</tbody>
</table>
</div>
</section>
<footer class="footer">
<div class="contenedor">
<div class="contacto">
<img src="images/invie-white.png" alt="logotipo blanco"/>
<a href="tel:+573024456678"><strong>Telefono</strong> <span>3024456678</span></a>
<a href="mailto:[email protected]"><strong>E-mail</strong> <span>[email protected]</span></a>
</div>
<form class="formulario">
<div class="col1">
<label for="nombre">Nombre</label>
<input type="text" required id="nombre" name="nombre"/>
<label for="email">E-mail</label>
<input type="email" required id="email" name="email"/>
<div class="sexo">
<label for="mujer">
<input type="radio" id="mujer" checked name="sexo" value="mujer"> mujer
</label>
<label for="hombre">
<input type="radio" id="hombre" name="sexo" value="hombre"> hombre
</label>
</div>
<div class="intereses">
<label for="cotizacion">
<input type="checkbox" checked id="cotizacion" name="intereses" value="cotizacion"> Cotización
</label>
<label for="reclamos">
<input type="checkbox" id="reclamos" name="intereses" value="reclamos"> Reclamos
</label>
<label for="comentarios">
<input type="checkbox" id="comentarios" name="intereses" value="comantarios"> Comentarios
</label>
<label for="otros">
<input type="checkbox" id="otros" name="intereses" value="otros"> Otros
</label>
</div>
</div>
<div class="col2">
<label for="comentarios">Comentarios</label>
<textarea name="comantarios" id="comentarios" cols="30" rows="7"></textarea>
<input type="submit" value="Enviar" class="button"/>
</div>
</form>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/blazy/1.5.4/blazy.min.js"></script>
<script>
var consulta = window.matchMedia('(max-width: 500px)');
consulta.addListener(mediaQuery);
var $burguerButton = document.getElementById('burguer-button');
var $menu = document.getElementById('menu');
function toggleMenu(){
$menu.classList.toggle('active')
};
function mediaQuery() {
if (consulta.matches) {
// si se cumple hagamos esto
console.log('se cumplió la condicion');
$burguerButton.addEventListener('touchstart', toggleMenu);
} else {
$burguerButton.removeEventListener('touchstart', toggleMenu);
// si no se cumple hagamos esto
console.log('no se cumplió la condicion');
}
}
mediaQuery();
// lazy loading
var bLazy = new Blazy({
selector: 'img'
});
// $burguerButton.addEventListener('touchstart', toggleMenu);
// function toggleMenu(){
// $menu.classList.toggle('active')
// };
</script>
</body>
</html>