210403 JavaScript jQuery Animate 연습_2

ITisIT210·2021년 4월 3일
0

jQuery

목록 보기
11/142
post-thumbnail
<!DOCTYPE html>
<html lang="en">
    <head>
            <meta charset="UTF-8">
            <title>Document</title>
            <style>
                div {
                    height : 500px;
                    background-color: dodgerblue;
                    display: none;
                }
            </style>
    </head>
    <boby>
        <div></div>
        <button>Click</button>

        <script src="js/jquery-3.6.0.min.js"></script> 
        <script src="js/jquery-ui.min.js"></script> 

        <script>
            //slide animate
            $("div").slideDown();
            // $("button").on("click"//, function() {
            //     $("div").slideToggle("1000", "easOutBounce", function() {
            //         $("div").css("backgroundColor", "red");
            //     }); //()안에 시간
            // });

            $("div").fadeIn(); //.fadeout(), .fadeToggle()

            


        </script>
    </boby>
    </html>
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글