-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
54 lines (39 loc) · 1.38 KB
/
Copy pathscript.js
File metadata and controls
54 lines (39 loc) · 1.38 KB
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
let searchForm=document.querySelector('.search-form');
document.querySelector('#search-btn').onclick = () =>
{
searchForm.classList.toggle('active');
shoppingCart.classList.remove('active');
LoginForm.classList.remove('active');
navigation.classList.remove('active');
}
let shoppingCart=document.querySelector('.shopping-cart');
document.querySelector('#cart-btn').onclick = () =>
{
shoppingCart.classList.toggle('active');
searchForm.classList.remove('active');
LoginForm.classList.remove('active');
navigation.classList.remove('active');
}
let LoginForm=document.querySelector('.login-form');
document.querySelector('#login-btn').onclick = () =>
{
LoginForm.classList.toggle('active');
shoppingCart.classList.remove('active');
searchForm.classList.remove('active');
navigation.classList.remove('active');
}
let navigation=document.querySelector('.navigation');
document.querySelector('#menu-btn').onclick = () =>
{
navigation.classList.toggle('active');
LoginForm.classList.toggle('active');
shoppingCart.classList.remove('active');
searchForm.classList.remove('active');
}
window.onscroll = () =>
{
searchForm.classList.remove('active');
shoppingCart.classList.remove('active');
LoginForm.classList.remove('active');
navigation.classList.remove('active');
}