문법
.fadeIn();
예를 들어
.fadeIn("slow")
.fadeIn(600)
문자로 시간을 정할때에는 "slow"
숫자로 시간을 정할때에는 숫자
예제 코드
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<title>Home</title>
</head>
<script type="text/javascript">
$(document).ready(function(){
$("#alertA").click(function(){
$("p").fadeIn(600);
})
});
</script>
<body>
<div>
<p style="display: none">MelonPeach</p>
<button id="alertA" type="button">버튼A</button>
</div>
</body>
</html>
실행 테스트
See the Pen 017 by youngjins (@youngjins) on CodePen.