CSS
.sticky {
position: fixed;
top: 0;
}
Javascript
// When the user scrolls the page, execute myFunction
window.onscroll = function() {myFunction()};
// Get the navbar
var navbar = document.getElementById("navbar");
// Get the offset position of the navbar
var sticky = navbar.offsetTop;
// Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the scroll position
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky");
} else {
navbar.classList.remove("sticky");
}
}
'컴퓨터 > Javascript' 카테고리의 다른 글
Javascript offsetWidth, offsetHeight (0) | 2022.05.24 |
---|---|
Javascript DOM 위치 이동 (0) | 2022.05.23 |
Javascript Object.values() 객체 요소의 값 (0) | 2022.05.17 |
Javascript Object.keys() 객체의 키 값 (0) | 2022.05.11 |
Javascript load(), play() 미디어 재생 (0) | 2022.05.05 |