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(){ // ****** 상단메뉴 ****** // $('.navi>li').mouseover(function(){ $(this).find('.subMenu').stop().slideDown(500); }).mouseout(function(){ $(this).find('.subMenu').stop().slideUp(500); }); // ****** 이미지 슬라이드 ****** // $('.imgSlide a:gt(0)').hide(); setInterval(function(){ $('.imgSlide a:first-child').fadeOut() .next('a').fadeIn() .end().appendTo('.imgSlide');},3000); // ****** 탭 메뉴 공지사항 갤러리 ****** // $('.tabMenu>li>a').click(function(){ $(this).parent().addClass("active").siblings().removeClass("active"); }); // ****** Modal 팝업 ****** // $(".notice li:first").click(function(){ $("#modalWrap").addClass("active"); }); $(".btn").click(function(){ $("#modalWrap").removeClass("active"); }); });