Menu



Manage

파일 목록
Study_Web > 이후/jquery/ex12-3.html Lines 51 | 1.3 KB
다운로드

                        <!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="../js/jquery.js"></script>
    <style>
        .txt1 {
            background-color: aqua;
        }

        .txt2 {
            background-color: pink;
        }
    </style>

    <!--제이쿼리 이진 사용-->
    <script>
        $(function () {
            $(".btn1").on("click", function () {
                $(".txt1").animate({
                    marginLeft: "500px",
                    fontSize: "50px"
                },
                    2000, "linear", function () {
                        alert("모션 완료!");
                    });
            });

            $(".btn2").on("click", function () {
                $(".txt2").animate({
                    marginLeft: "+=50px"
                }, 1000);
            });
        });
    </script>

</head>

<body>
    <p><button class="btn1">버튼1</button></p>
    <span class="txt1">"500px" 이동</span>
    <p><button class="btn2">버튼2</button></p>
    <span class="txt2">"50px"씩 이동</span>
</body>


</html>