informacion.component.html
2.55 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
<div class="EspectaculoContainer">
<div class="ContainerIzquierdo">
<img class="EspectaculoImagen" src="assets/images/{{ imagename }}">
<div class="tab">
<svg width="70" height="75">
<a href="#" onclick="openCity(event, 'Funciones')">
<polygon points="0,0 0,75 25,50 50,75 50,0" class="Boton" />
<text x="25" y="30" fill="#FFFFFF" text-anchor="middle"
alignment-baseline="middle" font-size="40px">
🗓
</text>
</a>
</svg>
<svg width="70" height="75">
<a href="#" onclick="openCity(event, 'Entradas')">
<polygon points="0,0 0,75 25,50 50,75 50,0" class="Boton" />
<text x="25" y="30" fill="#FFFFFF" text-anchor="middle"
alignment-baseline="middle" font-size="40px">
🎟
</text>
</a>
</svg>
<svg width="70" height="75">
<a href="#" onclick="openCity(event, 'Teatro')">
<polygon points="0,0 0,75 25,50 50,75 50,0" class="Boton" />
<image xlink:href="assets/images/Teatro.png"
x="5" y="5" height="40px" width="40px"></image>
</a>
</svg>
<svg width="70" height="75">
<a *ngif onclick="openCity(event, 'Duracion')">
<polygon points="0,0 0,75 25,50 50,75 50,0" class="Boton" />
<image xlink:href="assets/images/Tiempo.png"
x="5" y="5" height="40px" width="40px"></image>
</a>
</svg>
</div>
<div id="Funciones" class="tabcontent">
<h3>Funciones</h3>
</div>
<div id="Entradas" class="tabcontent">
<h3>Entradas</h3>
</div>
<div id="Teatro" class="tabcontent">
<h3>Teatro</h3>
</div>
<div id="Duracion" class="tabcontent">
<h3>Duracion</h3>
</div>
</div>
<div class="ContainerDerecho">
<h1>Fun Home</h1>
<h3>Descripcion: </h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore
et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi
ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit
esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<h3>Elenco: </h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore
et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi
ut aliquip ex ea commodo consequat.</p>
<h3>Calificacion: ★ ★ ★ ★ ☆</h3>
<input class="EspectaculoBoton" type="button" value="Quiero Mi Entrada!">
</div>
</div>