forked from CADsiti/cadsito
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
20 lines (16 loc) · 961 Bytes
/
script.js
File metadata and controls
20 lines (16 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function associazione() {
let messaggio = 'Sei sicuro di voler entrare a far parte della nostra associazione? Non puoi tornare indietro.';
if (confirm(messaggio)) alert('Sei entrato con successo nella nostra associazione! Sono 72€ per l\'entrata.');
else alert('Ci dispiace che tu non ci voglia vendere la tua anima.');
}
/* aggiunto da SecchioNerd */
let i=0;
function menu(){
if(i%2==0){
document.getElementById("menu").innerHTML = '<div style="display: flex; flex-direction: column;"><a href="#cadman" class="indice">Chi è CADman?</a><a href="#chiSiamo" class="indice">Chi siamo?</a><a href="#associazione" class="indice">Vuoi far parte della nostra associazione?</a><a href="#moltiUtentiNonSanno" class="indice">Molti dei nostri utenti non sanno che...</a><a href="#faq" class="indice" style="border-right:red solid 3px">FAQ</a></div>';
}
else{
document.getElementById("menu").innerHTML = '';
}
i++;
}