-
Notifications
You must be signed in to change notification settings - Fork 4
/
reperto.html
49 lines (42 loc) · 1.73 KB
/
reperto.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
<div id = "pagina_reperto_principale">
<div id="info">
<div id = "rep_titolo">super cazzola magnetica</div>
<div class = "rep_codice" id = "rep_sezione_codassoluto"></div>
</div>
<div class = "rep_descrizioneTitle">Autore</div>
<div class = "rep_descrizione" id = "rep_autore"></div>
<div class = "rep_separe"></div>
<div class = "rep_descrizioneTitle">Didascalia</div>
<div class = "rep_descrizione" id = "rep_descrizione">
</div>
<div class = "rep_separe"></div>
<div class = "rep_descrizioneTitle">Dimensioni</div>
<div id = "rep_dimensioni">
<!--Verranno renderizzate da JS-->
</div>
<div class = "rep_separe"></div>
<div class = "rep_descrizioneTitle">Materiali</div>
<div class = "rep_descrizione" id = "rep_materiali">Materiali</div>
<div class = "rep_separe"></div>
<div class = "rep_descrizioneTitle" id="rep_media">Media</div>
<div id = "container_immagini">
<!--Le immagini andranno inserite qui-->
</div>
<div id = "show_immagini">
<!--Le immagini andranno renderizzate qui-->
<button class = "rep_freccia" id = "rep_but_left "onclick="plusDivs(-1)">
<img src = "../res/frecciaIndietro.svg" />
</button>
<img id = "immagineDaMostrare" />
<button class = "rep_freccia" id = "rep_but_right" onclick="plusDivs(1)">
<img src = "../res/frecciaIndietro.svg" />
</button>
</div>
<img id = "immagine_grande" alt = "Foto del reperto"/>
<footer id = "chiudi_pagina_reperto" onclick = "chiudiPaginaReperto()">
<img src = "res/chiudi.svg" />
</footer>
<script type="text/javascript" src="script/slideshow.js"></script>
<script type="text/javascript" src="script/reperto.js"></script>
<script type="text/javascript" src="script/elencoReperti.js"></script>
</div>