[jQuery] 스크롤 위치에 따라 클래스 추가, 삭제하기
이미지와 같이 스크롤 위치에 따라 상단바의 강조 메뉴 또한 바뀌어야 한다. HOME ABOUT US HISTORY CONTACT US COMMUNITY 메뉴에 따라 id를 설정해준다. 여기서 삽입, 삭제할 class는 "menu-active" 이다. hero = $('#hero').position().top; about = $('#about').position().top - 500; hhistory = $("#history").position().top - 500; contact = $('#contact').position().top - 700; $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll < about) { $..
프론트엔드/jQuery
2019. 7. 8. 13:51