jQuery 예제 모음

시삽: 레드플러스 님 
게시판 이동:
 제목 : jQuery UI의 hide 메서드로 특정 요소 없애기
글번호: 4
작성자: Administrator ( 레드플러스 / redplus@live.com )
작성일: 2012/05/15 오전 5:32:54
조회수: 4024
<!DOCTYPE html>

<html lang="ko">
<head>
    <meta charset="utf-8" />
    <title>Hide</title>
    <style type="text/css">
        #theHide { width:100px; height:100px; background-color: Black; }
    </style>
    <script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script>
    <script src="../js/jquery-ui-1.8.18.custom.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(function () {
            $('#theHide').click(function () {
                $(this).hide("explode", "slow").show("slide", "slow");
            });
        });
    </script>
</head>
<body>
    <h1>jQuery Effects</h1>
    <h3>Hide</h3>

    <div id="theHide">
    </div>
</body>
</html>
 
이전 글   다음 글 삭제 수정 답변 글쓰기 리스트


관련 아티클 리스트
  제       목 파일 작성자 작성일 조회
이전글 jQuery UI의 Drag & Drop 기능 - Administrator 2012-05-15 7299
현재글 jQuery UI의 hide 메서드로 특정 요소 없애기 - Administrator 2012-05-15 4024
다음글 jQuery UI의 toggleClass 메서드로 2가지 상태로 모양을 변경하기 - Administrator 2012-05-15 4290
 
손님 사용자 Anonymous (손님)
로그인 Home