728x90 300x250 SMALL scrollspy1 Scrollspy 스크롤 스파이란? 스크롤스파이 메뉴 예제 Scrollspy란? 탐색 메뉴가 페이지를 스크롤할 때 사용자가 보고 있는 페이지의 현재 섹션을 강조 표시할 수 있는 웹 개발 기능을 말한다. jQuery 예시 스크롤 하면 현재 페이지 섹션에 해당하는 메뉴 색상이 변경 된다. $(document).ready(function() { $(window).scroll(function() { var currentSection = null; $('section').each(function() { var sectionTop = $(this).offset().top - 50; if ($(window).scrollTop() >= sectionTop) { currentSection = $(this).attr('id'); } }); $('nav li').removeClas.. 2023. 5. 7. 이전 1 다음 728x90 반응형 LIST