Developer, Designer, Photographer
[즐거'웅'코드] 목차 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(); }); } 구현 예시
* 단축키는 한글/영문 대소문자로 이용 가능하며, 티스토리 기본 도메인에서만 동작합니다.