-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathscript1.js
34 lines (30 loc) · 1.02 KB
/
script1.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
let sidebar = document.querySelector(".sidebar");
let closeBtn = document.querySelector("#btn");
let searchBtn = document.querySelector(".bx-search");
closeBtn.addEventListener("click", () => {
sidebar.classList.toggle("open");
menuBtnChange(); //calling the function(optional)
});
searchBtn.addEventListener("click", () => {
// Sidebar open when you click on the search iocn
sidebar.classList.toggle("open");
menuBtnChange(); //calling the function(optional)
});
// following are the code to change sidebar button(optional)
function menuBtnChange() {
if (sidebar.classList.contains("open")) {
closeBtn.classList.replace("bx-menu", "bx-menu-alt-right"); //replacing the iocns class
} else {
closeBtn.classList.replace("bx-menu-alt-right", "bx-menu"); //replacing the iocns class
}
}
const scrollbtn = document.getElementById("scrollbtn");
console.log(scrollbtn);
scrollbtn.addEventListener("click", myFunction);
function myFunction() {
window.scrollTo({
top: 0,
left: 0,
behavior: "smooth",
});
}