-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
21 lines (13 loc) · 835 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
window.addEventListener('scroll', function () {
if (window.scrollY > 150) {
let YDownHeader = document.getElementById("subHeader1");
YDownHeader.style = "display:none; transition: 0.4s;"
let YDownMenu = document.getElementById("menu-box");
YDownMenu.style = "display:none; transition: 0.4s;"
} else {
let YUpHeader = document.getElementById("subHeader1");
YUpHeader.style = "display: flex; flex-direction: row; justify-content: space-between; align-items: center; margin: 1rem 2rem; padding-bottom: 20px; border-bottom: 1px solid var(--light-white-color); transition: 0.4s;"
let YUpMenu = document.getElementById("menu-box");
YUpMenu.style = "display: flex; justify-content: center; align-items: center; padding-bottom: 16px; transition: 0.4s;"
}
});