fadeOut (speed, callback) : 서서히 감추기
02.FadeInFadeOut.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'); //서서히 나타나기 $("#second").fadeOut('fast'); //서서히 감추기 });
});
</script> </head> <body>
<input type="button" id="btn" value="페이드 효과 주기" />
<div id="first" style="display:none;
background-color:Yellow;"> 첫번째 영역
</div>
<div id="second"> 두번째 영역
</div> </body> </html> |
결과화면 |
[그림49-1] |
'jQuery | javascript | CSS' 카테고리의 다른 글
51.jQuery - slideToggle()로 지정된 영역 보이고 안보이게 하기 ( 08.Effects ) (0) | 2009.11.12 |
---|---|
50.jQuery - slideUp()으로 위로 올려서 숨기기 ( 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 |
46.jQuery - trigger 메서드로 click 행위 실행 ( 07.Events ) (0) | 2009.11.12 |
Comments