slideDown (speed, callback) : 위에서 아래로 슬라이드 다운됨(보여짐)
03.SlideUp.htm |
<html xmlns="http://www.w3.org/1999/xhtml"> <head>
<title>슬라이드업</title>
<style type="text/css">
#my .hover
{
cursor:pointer;
background-color:Yellow;
}
div{ background-color:Silver;
height:100px;
}
</style>
<script src="../jQuery/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{ $("#btn").click(function() { $("#first") .fadeIn('slow') //서서히 보이기 .slideUp('slow'); //슬라이드업 : 숨기기 });
});
</script> </head> <body>
<input type="button" id="btn" value="슬라이드 업" />
<div id="first" style="display:none;
background-color:Yellow;
height:100px;"> 첫번째 영역
</div>
<div id="second"> 두번째 영역
</div>
</body> </html> |
결과화면 |
[그림50-1] |
'jQuery | javascript | CSS' 카테고리의 다른 글
52.jQuery - animate 메서드로 다중 효과 구현 ( 08.Effects ) (0) | 2009.11.12 |
---|---|
51.jQuery - slideToggle()로 지정된 영역 보이고 안보이게 하기 ( 08.Effects ) (0) | 2009.11.12 |
49.jQuery - fadeIn()과 fadeOut()으로 불투명도 표시 ( 08.Effects ) (0) | 2009.11.12 |
48.jQuery - show()와 hide로 숨기기 및 보이기 ( 08.Effects ) (1) | 2009.11.12 |
47.jQuery - unbind 메서드로 이벤트 바인딩 해제 ( 07.Events ) (0) | 2009.11.12 |
Comments