$(document).ready(function(){ /* GNB 메뉴 토글 */ if($('#header_wrap').length > 0){ var _cont = $('.gnb'); var _subMenu = $('.new_lnb'); _cont.find('a').each(function(i){ $(this).bind('mouseenter', function(){ _cont.find('a').removeClass('on'); _subMenu.find('.category-wrapper').removeClass('hover'); _subMenu.find('.handler').removeClass('on'); $(this).addClass('on'); _subMenu.find('.cat' + i).addClass('hover'); _subMenu.addClass('menuActivate'); $("header").addClass('on'); }); }); $('#header_wrap').bind('mouseleave', function(){ _subMenu.removeClass('menuActivate'); _cont.find('a').removeClass('on'); $("header").removeClass('on'); }); _subMenu.find('.category-wrapper').each(function(){ $(this).bind('mouseenter', function(){ _subMenu.find('.category-wrapper').removeClass('hover'); $(this).addClass('hover'); }); $(this).bind('mouseleave', function(){ _subMenu.removeClass('menuActivate'); $(this).removeClass('hover'); }); }); } if($('.category-wrapper').length > 0){ var cont = $('.category-wrapper'); var handlers = cont.find('.handler'); handlers.each(function(i){ var _this = $(this); _this.bind('mouseenter', function(){ $('.gnb a').removeClass('on'); $('.gnb a').eq(_this.parent().index()).addClass('on'); }) }); } //mobile gnb $('.btn-gnb').click(function(){ $(this).toggleClass('active'); $('.m-gnb').toggleClass('open'); $('header').toggleClass('on'); }); $(".gnb-a").click(function(){ if($(this).hasClass("on") == false){ $(".gnb-a").next('div').slideUp(200); $(".gnb-a").removeClass("on"); $(this).addClass("on"); $(this).next('div').slideDown(200); }else{ $(this).next('div').slideUp(200); $(this).removeClass("on"); } }); //top 맨위로가기 $(function(){ $(window).scroll(function(){ setTimeout(scroll_top, 1000); }); $("#quick .top").click(function(){ $("html, body").animate({ scrollTop: 0 }, 400); return false; }); }); var winH = 200; function scroll_top(){ if($(window).scrollTop()<=winH) { $("#quick").fadeOut("slow"); } else { $("#quick").fadeIn("slow"); } } $(window).on('scroll', function() { var sT = $(window).scrollTop(); var val = $(document).height() - $(window).height() - $('footer').outerHeight(); if (sT >= val){ $('#quick').addClass('on'); } else{ $('#quick').removeClass('on'); } }); var lastScroll = 0; $(window).scroll(function(event){ var scroll = $(this).scrollTop(); if (scroll > 0){ $("header").addClass("scroll"); } else { $("header").removeClass("scroll"); } lastScroll = scroll; }); }); //docu end //서브페이지 탑 // $(document).bind("scroll", function(e) { // var scrollTop = $(this).scrollTop(); // var wiH = $(window).height(); // if (scrollTop < wiH - 350) { // $(".s-top").css("height", wiH-scrollTop); // $(".s-top").removeClass("active"); // $("#container").removeClass("fix"); // $("#container").css("paddingTop", wiH ); // } else { // $(".s-top").css("height", 247); // $(".s-top").addClass("active"); // $("#container").addClass("fix"); // $("#container").css("paddingTop", wiH ); // } // }); //서브페이지 탑 $(document).bind("scroll", function(e) { var scrollTop = $(this).scrollTop(); var wiH = $(window).height(); if (scrollTop > 0) { $(".s-top").addClass("active"); $("#container").addClass("fix"); } else { $(".s-top").removeClass("active"); $("#container").removeClass("fix"); } });