스크롤하여 나타나고 사라지는 헤더 만들기
4276 단어 javascriptdesignwebdev
샘플 코드 및 데모
이 스크립트는 스크롤하여
top
의 값을 변경합니다.const header = document.querySelector("header"),
headerStyle = window.getComputedStyle(header),
headerHeight = parseFloat(headerStyle.height);
let lastPosition = 0;
document.addEventListener("scroll", () => {
const currentPosition = window.scrollY,
diff = currentPosition - lastPosition;
let newTop = parseFloat(headerStyle.top) - diff;
if (diff < 0) {
newTop = Math.min(newTop, 0);
} else {
newTop = Math.max(newTop, 0 - headerHeight);
}
header.style.top = `${newTop}px`;
lastPosition = currentPosition;
});
머리글에 그림자가 있는 경우 이를 계산해야 합니다.
newTop = Math.max(newTop, 0 - headerHeight - shadowHeight)
Reference
이 문제에 관하여(스크롤하여 나타나고 사라지는 헤더 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/akimon658/create-a-header-that-appears-and-disappears-by-scrolling-32ii텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)