Effects - FadeIn() / FadeOut() 메서드 (서서히 보이기 및 숨기기)

by 조쉬 posted Oct 16, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

 

[FadeInFadeOut.htm]


 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<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="../js/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>

 

 
-------------------------------------------------------------------------------------

 


[실행결과]