-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
39 lines (38 loc) · 1.31 KB
/
index.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
function isHidden() {
let rice = document.querySelector("#rice");
let tomato = document.querySelector('#tomato');
let yam = document.querySelector('#yam');
let onions = document.querySelector('#onions');
}
function newVisibiltyRice (){
rice.style.display = 'block';
document.querySelector('.landing').style.display = 'none';
document.querySelector('.intro').style.display = 'none';
tomato.style.display = 'none';
yam.style.display = 'none';
onions.style.display = 'none';
}
function newVisibiltyTomato (){
tomato.style.display = 'block';
document.querySelector('.landing').style.display = 'none';
document.querySelector('.intro').style.display = 'none';
rice.style.display = 'none';
yam.style.display = 'none';
onions.style.display = 'none';
}
function newVisibiltyYam (){
yam.style.display = 'block';
document.querySelector('.landing').style.display = 'none';
document.querySelector('.intro').style.display = 'none';
tomato.style.display = 'none';
rice.style.display = 'none';
onions.style.display = 'none';
}
function newVisibiltyOnions (){
onions.style.display = 'block';
document.querySelector('.landing').style.display = 'none';
document.querySelector('.intro').style.display = 'none';
tomato.style.display = 'none';
rice.style.display = 'none';
yam.style.display = 'none';
}