$(function(){ //wheel event var now_scrolling = false; $(window).bind('mousewheel DOMMouseScroll', function(event){ if(now_scrolling) return; now_scrolling = true; var scroll_top = $("html").scrollTop() || $("body").scrollTop(); var idx = $('.section.active').index(); var next=$('#section0'+ (idx + 2)); var prev=$('#section0'+ idx); if (event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0){ // scroll up if (idx == 0){ $('#section01').addClass('active'); now_scrolling = false; }else{ $('.section').removeClass('active'); prev.addClass('active'); $('html, body').stop().animate({ scrollTop: prev.offset().top }, 500, 'linear', function(){ now_scrolling = false; }); } }else{ // scroll down if (idx == 6){ $('#section07').addClass('active'); now_scrolling = false; }else{ $('.section.active').removeClass('active'); next.addClass('active'); $('html, body').stop().animate({ scrollTop: next.offset().top }, 500, 'linear', function(){ now_scrolling = false; }); } } }); //btn_top $('.btn_top').click(function(){ $('.section.active').removeClass('active'); $('#section01').addClass('active'); }); //main_visual $('.slide_nav a').each(function(){ $(this).mouseenter(function(){ var linkurl; var idx = $(this).index(); /*==*/ for (i=0;ili>a').click(function(e){ e.preventDefault(); var idx = $(this).parent('li').index(); $('.product_wrap .bg_group .bg').removeClass('active'); $('.product_wrap .bg_group .bg').eq(idx).addClass('active'); }); //brand $('.brand_wrap .brand>li').mouseenter(function(){ var idx = $(this).index(); /*==*/ $("#bgftl").html(slideTtl[idx]); $("#bgfct").html(slideCtx[idx]); /*==*/ $('.brand_wrap .bg_group .bg').removeClass('active'); $('.brand_wrap .bg_group .bg').eq(idx).addClass('active'); }); }); /* ****************************** * O N L O A D * ******************************/ $(document).ready(function(){ $(".slide_nav a").eq(0).css('background','#005baa'); });