JS
Js 이것은 상단 메뉴바가 스크롤 시 따라 올 수 있도록 제작
드비디
2023. 1. 31. 17:47
if (document.querySelector('.title_category') !== null) {
const scrollC = document.querySelector('.title_category');
const scrollD = document.querySelector('.detail_title_category');
const scrollE = document.querySelector('.DescTop');
window.addEventListener('scroll', () => {
if (window.scrollY >= 66) {
scrollC.style.position = "fixed";
scrollC.style.top = "0";
scrollC.style.background = "white";
scrollD.style.position = "fixed";
scrollD.style.top = "2%";
scrollD.style.background = "white";
scrollE.style.padding = "27rem 0 8rem 0";
} else {
scrollC.style = " ";
scrollD.style = " ";
scrollE.style = " ";
}
});
}