I am passionate about web application development, technology and design. I have a hardwired desire to be better, an instinct for good design, a strong ambition to make a difference on the web.
$(document).ready(function(){ // 서브메뉴 숨기고 시작. $('.subMenu').hide(); // 마우스오버 메뉴 $('nav').mouseover(function(){ $('.subMenu').stop().slideDown(300); }).mouseout(function(){ $('.subMenu').stop().slideUp(300); }); //이미지슬라이드 좌우 var imgs = 2; var now = 0; start(); function start(){ $(".imgSlide>a").eq(0).siblings().animate({width:"-1200px"}); setInterval(function(){ now = now==imgs ? 0 : now+=1; $(".imgSlide>a").eq(now-1).animate({width:"-1200px"}); $(".imgSlide>a").eq(now).animate({width:"1200px"}); },3000); } // 팝업 $('.notice li:first').click(function(){ // alert('test'); $('#modalWrap').addClass('active'); }); $('.btn').click(function(){ $('#modalWrap').removeClass('active'); }); });