I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) 제이쿼리 객체 천천히 사라지게 하기

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2021. 12. 27. 18:45

반응형
jQuery
1
2
3
4
5
<script>
    $('(대상)').fadeOut((속도), function () {
        $(this).remove();
    });
</script>
예제 소스
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
 
<style>
    .test_obj {
        width: 100px;
        height: 100px;
        background-color: red;
    }
</style>
 
<button onclick="test()">천천히 제거하기</button>
<div class="test_obj"></div>
 
<script>
    function test() {
        $('.test_obj').fadeOut(500function () {
            $(this).remove();
        });
    }
</script>
구현 예시
반응형