(function ($) { $.fn.dropdown = function () { return this.each(function () { var $gnb = $(this), $menu = $gnb.find(".menu"), $depth1 = $gnb.find(".depth1"), $depth2 = $gnb.find(".depth2"); $gnb .mouseenter(function () { gnbOn(); }) .mouseleave(function () { gnbOff(); }); $gnb .find("a") .focusin(function () { gnbOn(); }) .focusout(function () { gnbOff(); }); function gnbOn() { $gnb .find($depth2) .stop() .animate({ height: "180" }); /*서브메뉴 높이 조절*/ } function gnbOff() { $gnb.find($depth2).stop().animate({ height: "0" }); } }); }; })(jQuery); $(function () { $(".dropdown").dropdown(); }); /*전체메뉴*/ $("#toggle").click(function () { $(this).toggleClass("active"); $("#overlay").toggleClass("open"); }); $(".dropdown").hover(function () { $("#logo").toggleClass("logo_on"); });