if( window.console == undefined ){ console = { log : function(){} }; } var sub_fix = -1; var sub_fix2= -1; var close_idx = -1; function lnbopen(one , two){ $('.gnbBox ul li').eq(one).find('a').addClass('gnb_on'); $('.tabWrap ul li').eq(two).addClass('on'); sub_fix = one; sub_fix2 = two; }; $(window).scroll(function(){ var sc = $(window).scrollTop(); if(sc > 200){ $('.m_topBtn').stop().animate({'bottom':80,'opacity':1},300); }else{ $('.m_topBtn').stop().animate({'bottom':-20,'opacity':0},300); } }) $(window).on('load',function(){ var contH = $('.wrap').height(); $('.totalMenu').css('height',contH) }); $(function(){ // 토탈메뉴 위치세팅 $('.m_gnbBtn a, .close_btn a, .bgDim').on('click',function(e){ e.preventDefault(); var contR = parseInt($('.totalMenu').css('right')); var idxBtn = $('.wrap').width() - $('.totalMenu').width() - 18; if(contR < 0){ $('.totalMenu').animate({right:0},300); $('.bgDim').show(); $('.bg_logo').show(); }else{ $('.totalMenu').animate({right:-80+"%"},300); $('.bgDim').hide(); $('.bg_logo').hide(); } }); /* 1Depth */ $(".totalMenu .m_gnb > ul > li > span").click(function(){ $(this).next().stop().slideToggle(); $(this).toggleClass('on') }).focus(function(){ $(this).click(); /* 위의 ("#header #gnb li.dep1 > a").click(function()}{}) 실행!! */ }); $('.loc_tab ul li a').on('click',function(e){ e.preventDefault(); var moveIdx = $('body').offset().top; $('body,html').animate({'scrollTop':moveIdx},700); }); }); $(window).load(function() { /* flexslider 기본세팅*/ $('.slideZone').flexslider({ animation: "slide", after: function(slider) { if (!slider.playing) { slider.play(); } } }); }); $(function(){ //TOP 버튼 $('.m_topBtn a , .rquick_w a').on('click',function(e){ e.preventDefault(); $('html,body').animate({scrollTop:0},400); }) //서브페이지 BG색 변경 var href = location.href; href = href.split("/"); if(href.length == 4){ /* 메인 */ $("body").removeClass("subBg"); }else{ /* 서브페이지 */ $("body").addClass("subBg"); } })