<html lang="ko">
<head>
<meta charset="UTF-8">
<title>jQuery Fade Animation</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<style>
#divBox {
width: 100px;
height: 100px;
background-color: yellow;
border: 5px solid orange;
margin-top: 20px;
}
</style>
<script>
$(function() {
$("#fadeInBtn").on("click", function() {
$("#divBox").fadeIn("slow"); // id가 "divBox"인 요소를 느리게 점점 나타나게 함.
});
$("#fadeOutBtn").on("click", function() {
$("#divBox").fadeOut(2000); // id가 "divBox"인 요소를 2초에 걸쳐 점점 사라지게 함.
});
});
</script>
</head>
<body>
<h1>페이드 효과의 속도 조절</h1>
<button id="fadeInBtn">페이드 인</button>
<button id="fadeOutBtn">페이드 아웃</button>
<div id="divBox"></div>
</body>
</html>