23 July 2017

JQuery: Chuyển động khối thẻ DIV bằng Animate & JQuery thay đổi tính chất CSS

JQuery Animate
JavaScript 2017
<!DOCTYPE html>
<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
        <script>
            $(document).ready(function () {
                $("button").click(function () {
                    $("div").animate({
                        left: '250px',
                        opacity: '0.5',
                        height: '150px',
                        width: '150px'
                    });
                });
            });
        </script>
    </head>
    <body>
        <button>Start Animation</button>
        <div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
    </body>
</html>
Run demo

0 nhận xét:

Post a Comment

 

BACK TO TOP

Xuống cuối trang