$(document).ready(function () { // header 고정 $(window).on('scroll', function () { if ($(window).scrollTop()) { $('#header').addClass('active'); } else { $('#header').removeClass('active'); } }); // 햄버거 메뉴 $('#header .hamberg').click(function () { $(this).children('span').toggleClass('on'); $('#header .nav_wrap').toggleClass('on'); }); // 메뉴 탭 스크롤 이벤트 $('#header a').on('click', function (e) { e.preventDefault(); const target = $(this).attr('href'); const offsetTop = $(target).offset().top - 60; $('html, body').animate({ scrollTop: offsetTop }, 500); // 500ms = 부드러운 스크롤 속도 }); //faq $(".faq_list .ask").click(function () { var answer = $(this).next("div"); if ($(this).hasClass("on")) { $(this).removeClass("on"); answer.slideUp(); } else { $(".faq_list .ask").removeClass("on"); $(".faq_list .ask").next("div").slideUp(); $(this).addClass("on"); answer.slideDown(); } }); });