투케이2K

69. (jquery/제이쿼리) delay 사용해 애니메이션 (animation) 전환 과정에서 정적 딜레이 값 설정 실시 본문

Jquery

69. (jquery/제이쿼리) delay 사용해 애니메이션 (animation) 전환 과정에서 정적 딜레이 값 설정 실시

투케이2K 2022. 12. 2. 14:12
반응형

[개발 환경 설정]

개발 툴 : Edit++

개발 언어 : jquery

 

[소스 코드]

    <!-- [CDN 라이브러리 설치] -->
    <script src="https://code.jquery.com/jquery-latest.min.js"></script>





    <!-- [내부 자바스크립트 J쿼리 이벤트 지정] -->
    <script>


        /**
         * --------------------------------
         * [요약 설명]
         * --------------------------------
         * 1. load : html 최초 로드 수행 시 호출 되는 함수입니다
         * --------------------------------
         * 2. on : jquery 에서 이벤트를 적용할 때 사용합니다
         * --------------------------------
         * 3. delay : 애니메이션 전환 과정에서 정적 딜레이 값을 부여합니다
         * --------------------------------
         * 4. fadeIn : 선택한 요소를 서서히 나타나게 합니다
         * --------------------------------
         * 5. fadeOut : 선택한 요소를 서서히 사라지게 합니다
         * --------------------------------
        */



        // [html 최초 로드 및 이벤트 상시 대기 실시]
        $(window).load(function(){
            console.log("");
            console.log("=========================================");
            console.log("[window load] : [html 로드 수행 실시]");
            console.log("=========================================");
            console.log("");

            // [테스트 함수 호출]
            testMain();
        });



        // [테스트 자바스크립트 함수]
        function testMain(){
            console.log("");
            console.log("=========================================");
            console.log("[testMain] : [start]");
            console.log("=========================================");
            console.log(""); 


            // [on 이벤트 적용 실시]
            $("#divTag").on("click", function() {

                // id 가 pTag 인 요소를 [0.5초에 걸쳐 사라지게 하고]  [1초의 지연시간 뒤에]  [다시 2초에 걸쳐 나타나게 함]
                $("#pTag").fadeOut(500).delay(1000).fadeIn(2000);

            });

        };


    </script>
 

[결과 출력]


 

반응형
Comments