/*Sub_Lnb*/ var sub_fix = -1; var sub_fix2 = -1; function lnbopen(one , two){ $('.leftList > ul > li').find("a").eq(one).addClass('curent'); $('.leftList > ul > li > .dep2 > ul > li').eq(two).addClass('on'); sub_fix = one; sub_fix2 = two; }; /*사업영역*/ $(function(){ $(window).scroll(function(){ var winSc = $(window).scrollTop(); var maxFix = $('.footer').offset().top; var resultNum = maxFix; if(winSc < 500){ $('.text_quickZone .text_Aboslute').css('top',80 ); }else if(winSc > 400 ){ $('.text_quickZone .text_Aboslute').css('top',winSc - 420); } }) //TOP 버튼 $('.rquick_w a').on('click',function(e){ e.preventDefault(); $('html,body').animate({scrollTop:0},400); }) }) $(function(){ /*메인 gnb 슬라이드*/ $(".gnbBox > ul > li").on("mouseenter",function(){ var NaviIdx = $(this).index() + 1; $(".subDepBg").show(); $('.sNB0'+ NaviIdx).show().stop().animate({height: '30'},100); $(".sub_gnb").stop().animate({height:"206"},100); }); $(".gnbBox > ul > li").on("mouseleave",function(){ var NaviIdx = $(this).index() + 1; $(".subDepBg").hide(); $('.sNB0'+ NaviIdx).hide(); $(".sub_gnb").stop().animate({height:"0"},100); }); // 메인슬라이드 $('.slideBox ul').bxSlider({ auto: true, speed: 500, useCSS: !1, autoControls: true, onSlideAfter: function(){ setTimeout(function(){ $('.slideBox .bx-start').trigger('click'); },1000); } }); // 좌측 영역 GNB 버튼 /* GNB - web */ $(".leftList > ul > li").mouseenter(function(){ $(this).find("a").addClass('on'); $(".leftList > ul > li > a").next().stop().slideUp(); $(this).find("a").next().stop().slideDown(); }) /* GNB - web */ $(".leftList > ul > li").mouseleave(function(){ $(this).find("a").removeClass('on'); }) $('.dep2Tab > ul > li').click(function(){ $('.dep2Tab > ul > li').removeClass('on'); $(this).addClass('on'); var idx = $(this).index(); var moveIdx = $('.list_div > ul > li').eq(idx).offset().top; $('body,html').stop().animate({'scrollTop':moveIdx-250},500); }); });