mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-06 09:52:42 +00:00
Remove declaration of header variable
This commit is contained in:
parent
e8841afa78
commit
bd2e9cfcee
@ -62,12 +62,11 @@
|
|||||||
|
|
||||||
<script webc:keep webc:bucket="defer">
|
<script webc:keep webc:bucket="defer">
|
||||||
// Make the navigation bar sticky
|
// Make the navigation bar sticky
|
||||||
const header = document.querySelector(".main-header");
|
|
||||||
const navbar = document.querySelector("navbar");
|
const navbar = document.querySelector("navbar");
|
||||||
|
|
||||||
window.addEventListener("scroll", e => {
|
window.addEventListener("scroll", e => {
|
||||||
const scrollPos = window.scrollY || document.documentElement.scrollTop;
|
const scrollPos = window.scrollY || document.documentElement.scrollTop;
|
||||||
const stickyLine = header.scrollHeight - navbar.scrollHeight;
|
const stickyLine = document.querySelector(".main-header").scrollHeight - navbar.scrollHeight;
|
||||||
if (scrollPos > stickyLine) {
|
if (scrollPos > stickyLine) {
|
||||||
navbar.classList.add("sticky-nav");
|
navbar.classList.add("sticky-nav");
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user