$(function(){

 

 

 $("#banner li").click(function(){

           $(".box").animate({top:-200});

 });

 

  $("#banner li").click(function(){

           $(".box").animate({top:0});

 });

 

});



<script type="text/javascript" charset="utf-8">

 $(function(){

  $('이벤트타겟').hover(function(){

   $('모션대상', this).stop().animate({marginTop : -타이틀높이}, 300);

  }, function(){

   $('모션대상', this).stop().animate({marginTop : -0}, 300);

  })

 });

</script> 

[출처] [jQuery] Title Sliding Up|작성자 플캣

[출처] [jQuery] Title Sliding Up|작성자 플캣


'html5/jQuery' 카테고리의 다른 글

가로 슬라이더  (0) 2014.11.25
심플 이미지 슬라이더  (0) 2014.11.22
서브메뉴 오버롤 참고  (0) 2014.11.14
제이쿼리 튜토리얼 모음  (0) 2014.11.10
푸터 메뉴 슬라이드 업  (0) 2014.11.10