$(document).ready(function () { //gnb hover var gnbHeader = $("#header .header_bg"); $("#gnb").hover( function () { gnbHeader.addClass("active").stop(true, true).animate({ height: 250 }, 200); }, function () { gnbHeader.stop(true, true).animate({ height: 66 }, 0, function () { $(this).removeClass("active"); }); } ); $("#gnb > li").hover( function () { $(this).addClass("hover"); }, function () { $(this).removeClass("hover"); } ); //Mobile Menu $('.top-btn').click( function () { $("#header .header_bg").addClass('active').stop(true, true).animate({ height: 250 }, 200); }); //기준 설정 $(window).resize(function () { if (window.innerWidth > 1024) { $('.top-btn').click( function () { $('#header.header_scroll .top-btn').toggleClass('on'); $('#header.header_scroll .header_bg').toggleClass('on'); }); } }).resize(); //Main Menu $('.main-nav ul li:has(ul)').addClass('submenu'); $('.main-nav ul li:has(ul)').append(""); $('.main-nav ul i').click(function () { $(this).parent('li').toggleClass('open'); $(this).parent('li').children('ul').slideToggle(); }) //Mobile Menu $('.top-btn').click(function () { $('html').addClass('show'); }); $('.overlay').click(function () { $('html').removeClass('show'); }) });