-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfinal_menu.js
73 lines (69 loc) · 2.64 KB
/
final_menu.js
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
let count = 0;
function displayNone(){
count++;
if(count%2==1){
document.querySelector(".container_dropdown").style.display = "flex";
}else{
document.querySelector(".container_dropdown").style.display = "none";
}
}
function Show() {
let x = document.getElementById('show');
let x1 = document.getElementById("show1");
let x2 = document.getElementById('show2');
let x3 = document.getElementById("show3");
let x4 = document.getElementById('show4');
if (x.style.display === "none") {
x.style.display = "block" , x1.style.display = 'none', x2.style.display = 'none', x3.style.display = 'none', x4.style.display = 'none'
} else {
x.style.display = "none";
}
}
function Show1() {
let x = document.getElementById('show');
let x1 = document.getElementById("show1");
let x2 = document.getElementById('show2');
let x3 = document.getElementById("show3");
let x4 = document.getElementById('show4');
if (x1.style.display === "none") {
x1.style.display = "block" , x.style.display = 'none', x2.style.display = 'none', x3.style.display = 'none', x4.style.display = 'none'
} else {
x1.style.display = "none";
}
}
function Show2() {
let x = document.getElementById('show');
let x1 = document.getElementById("show1");
let x2 = document.getElementById('show2');
let x3 = document.getElementById("show3");
let x4 = document.getElementById('show4');
if (x2.style.display === "none") {
x2.style.display = "block" , x.style.display = 'none', x1.style.display = 'none', x3.style.display = 'none', x4.style.display = 'none'
} else {
x2.style.display = "none";
}
}
function Show3() {
let x = document.getElementById('show');
let x1 = document.getElementById("show1");
let x2 = document.getElementById('show2');
let x3 = document.getElementById("show3");
let x4 = document.getElementById('show4');
if (x3.style.display === "none") {
x3.style.display = "block" , x.style.display = 'none', x2.style.display = 'none', x1.style.display = 'none', x4.style.display = 'none'
} else {
x3.style.display = "none";
}
}
function Show4() {
let x = document.getElementById('show');
let x1 = document.getElementById("show1");
let x2 = document.getElementById('show2');
let x3 = document.getElementById("show3");
let x4 = document.getElementById('show4');
if (x1.style.display === "none") {
x4.style.display = "block" , x.style.display = 'none', x2.style.display = 'none', x3.style.display = 'none', x1.style.display = 'none'
} else {
x4.style.display = "none";
}
}