반응형
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$("#btn1").click(function() {
$("img").fadeOut(1000);
});
$("#btn2").click(function() {
$("img").fadeIn(1000);
});
});
</script>
<title>Document</title>
</head>
<body>
<img src="/images/1.png" />
<button id="btn1">FadeOut</button>
<button id="btn2">FadeIn</button>
</body>
</html>
반응형
'2020 > JQuery' 카테고리의 다른 글
JQuery 배열관리 (0) | 2020.03.01 |
---|---|
JQuery animate() (0) | 2020.03.01 |
Jquery slideDown(), slideUp() (0) | 2020.03.01 |
JQuery on, off(이벤트 연결 및 제거) (0) | 2020.02.29 |
JQuery insertAfter, insertBefore 요소추가 (0) | 2020.02.29 |