$(document).ready(function(){ var previousScroll = 0; $(window).scroll(function(){ var currentScroll = $(this).scrollTop(); if (currentScroll > previousScroll || currentScroll==0){ $(".header").removeClass("on") } else { $(".header").addClass("on") } previousScroll = currentScroll; }) $(".content._03 .content_wrap .content3_wrap .gnb ul li").click(function(){ var idx=$(this).index() $(".content._03 .content_wrap .content3_wrap .gnb ul li").removeClass("active") $(".content._03 .content_wrap .content3_wrap .mb_gnb ul li").hide() $(".content._03 .content_wrap .content3_wrap .mb_gnb ul li").eq(idx).show() $(".content._03 .content_wrap .content3_wrap .video_wrap .video").hide() $(".content._03 .content_wrap .content3_wrap .video_wrap .video").eq(idx).show() $(this).addClass("active") }) $(".top").click(function(){ $('html,body').animate({scrollTop:0},400) }) $(".header .header_wrap .gnb> ul> li").hover(function(){ $(this).find("ul").css("height","auto").css("opacity","1") $(this).find("a").addClass("active") },function(){ $(".header .header_wrap .gnb> ul> li>ul").css("height","0").css("opacity","0") $(".header .header_wrap .gnb> ul> li>a").removeClass("active") }) $(".header .header_wrap .header_right ul li.meun_icon").click(function(){ $(".total_menu").css("right","0") $(".total_menu .close_wrap>div").addClass("on") }) $(".total_menu .close_wrap").click(function(){ $(".total_menu").css("right","-100%") $(".total_menu .close_wrap>div").removeClass("on") }) $(".header .header_wrap .header_right ul li.search").click(function(){ $(".search_wrap").addClass("on") $(".search_wrap .close_wrap>div").addClass("on") }) $(".search_wrap .close_wrap").click(function(){ $(".search_wrap").removeClass("on") $(".search_wrap .close_wrap>div").removeClass("on") }) $(".total_menu .total_menu_wrap >ul >li").click(function(){ $(this).toggleClass("toggle") }) })