var oneNum = -1; var twoNum = -1; $(function(){ $(".gnbList").children("li").find(".twoDep").css("display", "none"); //if(oneNum != -1) activeMenu(); $("#headwrap").mouseenter(function(){ $(".gnbList").children("li").find(".twoDep").css("display", ""); $(this).stop().animate({height:330}, 300, "easeOutQuint").css({"border-bottom":"1px solid #666", "background":"#ebebf7"}); }); $("#headwrap").mouseleave(function(){ $(this).stop().animate({height:104}, 300, "easeOutQuint", function(){ $(".gnbList").children("li").find(".twoDep").css("display", "none"); }); $(this).css({"border-bottom":"", "background":"#fff"}); }); // GNB - case of 시스템폰트 $(".gnbList").children("li").each(function(){ $(this).find(".twoDep").css("display", "none"); $(this).hover(function(){ if(oneNum != -1) { $(".gnbList").children("li").eq(oneNum).find("a").removeClass("on"); } $(this).find("a").addClass("on"); $(this).find('.twoDep ul').css('backgroundColor','#b7bbd9'); }, function(){ $(this).find("a").removeClass("on"); $(this).find('.twoDep ul').css('backgroundColor',''); }); $(this).focusin(function(){ $(".gnbList").children("li").find(".twoDep").css("display", ""); $("#headwrap").stop().animate({height:330}, 300, "easeOutQuint"); if(oneNum != -1) { $(".gnbList").children("li").eq(oneNum).find("a").removeClass("on"); } $(this).find("a").addClass("on"); $(this).find('.twoDep ul').css('backgroundColor',''); }); $(this).focusout(function(){ $("#headwrap").stop().animate({height:104}, 300, "easeOutQuint", function(){ $(".gnbList").children("li").find(".twoDep").css("display", "none"); }); if(oneNum != -1) { $(".gnbList").children("li").eq(oneNum).find("a").addClass("on"); } $(this).find("a").removeClass("on"); $(this).find('.twoDep ul').css('backgroundColor',''); }); }); // GNB - case of 이미지폰트 /* $(".gnbList").children("li").each(function(){ $(this).find(".twoDep").css("display", "none"); $(this).hover(function(){ if(oneNum != -1) { $(".gnbList").children("li").eq(oneNum).find("img:first").attr("src", $(".gnbList").children("li").eq(oneNum).find("img:first").attr("src").replace("_on.png", ".png")); } $(this).find("img:first").attr("src", $(this).find("img:first").attr("src").replace(".png", "_on.png")); }, function(){ $(this).find("img:first").attr("src", $(this).find("img:first").attr("src").replace("_on.png", ".png")); }); $(this).focusin(function(){ $(".gnbList").children("li").find(".twoDep").css("display", ""); $("#headwrap").stop().animate({height:365}, 300, "easeOutQuint"); }); $(this).focusout(function(){ $("#headwrap").stop().animate({height:151}, 300, "easeOutQuint", function(){ $(".gnbList").children("li").find(".twoDep").css("display", "none"); }); }); }); */ }); /* function activeMenu() { jQuery(".gnbList").children("li").eq(oneNum).find("a").addClass("on"); }; */