jQuery(function ($) { var now = new Date(); var y = now.getFullYear(); var m = lpad((now.getMonth() + 1) + '', 2, '0'); var d = lpad(now.getDate() + '', 2, '0'); $('#gnb').hover(function () { }, function () { $(this).find('.sm').animate({ height: '0px' }, { queue: false, duration: 500 }); }); $('#gnb>li').hover(function () { var smHeight = 0; $('.sm').stop(); $('.sm').each(function () { smHeight += parseInt($(this).height(), 10); }); //if (smHeight > 0) { // if ($('.sm').is(':animated')) { // smHeight = 0; $('.sm').each(function () { smHeight += parseInt($(this).height(), 10); if (smHeight >= 162) smHeight = 162; }); $('.sm').not($(this).find('.sm')).height(0); $(this).find('.sm').css('height', smHeight).animate({ height: '162px' }, { queue: false, duration: 500 }); // } else { // $('.sm').css('height', '0px'); // $(this).find('.sm').css('height', '230px'); // } // } else { // $(this).find('.sm').animate({ // height: '230px' // }, { // queue: false, // duration: 500 // }); // } }, function () { }); $('ul#gnb a').focus(function () { var smHeight = 0; $('.sm').stop(); $('.sm').each(function () { smHeight += parseInt($(this).height(), 10); }); //if (smHeight > 0) { //if ($('.sm').is(':animated')) { smHeight = 0; $('.sm').each(function () { smHeight += parseInt($(this).height(), 10); if (smHeight >= 162) smHeight = 162; }); if (typeof ($(this).parent().find('.sm')[0]) != 'undefined') { $('.sm').not($(this).parent().find('.sm')).height(0); $(this).parent().find('.sm').css('height', smHeight).animate({ height: '230px' }, { queue: false, duration: 500 }); } else { $('.sm').not($(this).parents('.sm')).height(0); $(this).parents('.sm').css('height', smHeight).animate({ height: '162px' }, { queue: false, duration: 500 }); } //} else { // $('.sm').css('height', '0px'); // $(this).parent().find('.sm').css('height', '230px'); //} // } else { // if (typeof ($(this).parent().find('.sm')[0]) != 'undefined') { // $(this).parent().find('.sm').animate({ // height: '230px' // }, { // queue: false, // duration: 500 // }); // } else { // $(this).parents('.sm').animate({ // height: '230px' // }, { // queue: false, // duration: 500 // }); // } // } }); $('ul#gnb li:last-child div.sm ul li:last-child:last a').blur(function () { var sm_element = $(this).parent().parent().parent().parent(); if (parseInt(sm_element.height(), 10) == 162) { $('.sm').animate({ height: '0px' }, { queue: false, duration: 500 }); } }); $('.searchImgBtn').focus(function () { $('.sm').animate({ height: '0px' }, { queue: false, duration: 500 }); }); //$('ul#gnb li:last-child div.sm ul li:last-child:last a').focus(function () { // var sm_element = $(this).parent().parent().parent().parent(); // // if (parseInt(sm_element.height(), 10) != 230) { // sm_element.animate({ // height: '230px' // }, { // queue: false, // duration: 500 // }); // } //}); $('#sel_lang li:last-child a').blur(function () { $(this).parent().parent().toggle(); }); // a tag title $('#gnb>li:eq(1)>a').attr("title", ""); $('body').click(function () { $(this).find('.sm').animate({ height: '0px' }, { queue: false, duration: 500 }); }); }); /*=============================================================================* * sVal 값이 숫자인지를 확인한다.('.'까지 괜찮음) * * param : sVal 입력스트링 * * return : Boolean True이면 숫자값 *============================================================================*/ /** * lpad */ function lpad(str, n, padding) { str = str + ''; if (str.length >= n) return str; else { var len = n - str.length; var pad_str = str; for (var i=0; i= n) return str; else { var len = n - str.length; var pad_str = str; for (var i=0; i