-
Notifications
You must be signed in to change notification settings - Fork 4
/
new.js
87 lines (66 loc) · 1.9 KB
/
new.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
74
75
76
77
78
79
80
81
82
83
84
85
86
function areasolid() {
let a = document.getElementById('t1').classList;
let b = document.getElementById('t2').classList;
let x = document.getElementById('solid');
let y = document.getElementById('powder');
x.style.display = "block";
y.style.display = "none";
if (b.contains("bottom-border")) {
b.remove("bottom-border");
}
a.toggle("bottom-border");
}
function areapowder() {
let a = document.getElementById('t1').classList;
let b = document.getElementById('t2').classList;
let x = document.getElementById('solid');
let y = document.getElementById('powder');
y.style.display = "block";
x.style.display = "none";
if (a.contains("bottom-border")) {
a.remove("bottom-border");
}
b.toggle("bottom-border");
}
function areacuboidal() {
let a = document.getElementById('s1').classList;
let b = document.getElementById('s2').classList;
let x = document.getElementById('cuboidal');
let y = document.getElementById('circular');
x.style.display = "block";
y.style.display = "none";
if (b.contains("bottom-border2")) {
b.remove("bottom-border2");
}
a.toggle("bottom-border2");
}
function areacircular() {
let a = document.getElementById('s1').classList;
let b = document.getElementById('s2').classList;
let x = document.getElementById('cuboidal');
let y = document.getElementById('circular');
y.style.display = "block";
x.style.display = "none";
if (a.contains("bottom-border2")) {
a.remove("bottom-border2");
}
b.toggle("bottom-border2");
}
function forphysical() {
let x = document.getElementById('extendphysical');
if(x.style.display==="block"){
x.style.display = "none";
}
else{
x.style.display = "block";
}
}
function forchemical() {
let x = document.getElementById('extendchemical');
if(x.style.display==="block"){
x.style.display = "none";
}
else{
x.style.display = "block";
}
}