• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>jQuery Fade Animation</title>
7
    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
8
    <style>
9
        #divBox {
10
            width: 100px;
11
            height: 100px;
12
            background-color: yellow;
13
            border: 5px solid orange;
14
            margin-top: 20px;
15
        }
16
    </style>
17
    <script>
18
        $(function() {
19
            $("#fadeToggleBtn").on("click", function() {
20
                // id가 "divBox"인 요소를 1초에 걸쳐 점점 나타나게 하거나 사라지게 함.
21
                $("#divBox").fadeToggle(1000);
22
            });
23
        });
24
    </script>
25
</head>
26
​
27
<body>
28
​
29
    <h1>페이드 효과의 토글</h1>
30
    <button id="fadeToggleBtn">페이드 효과 토글</button>
31
    <div id="divBox"></div>
32
    
33
</body>
34
​
35
</html>