(즐거웅코드) 제이쿼리 객체 천천히 사라지게 하기
[즐거'웅'코드] 목차 jQuery 예제 소스 구현 예시 jQuery 1 2 3 4 5 $('(대상)').fadeOut((속도), function () { $(this).remove(); }); 예제 소스 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 .test_obj { width: 100px; height: 100px; background-color: red; } 천천히 제거하기 function test() { $('.test_obj').fadeOut(500, function () { $(this).remove(); }); } 구현 예시
2021. 12. 27. 18:45