jQuery delay()方法的用法

2020-07-16 10:05:25
在 jQuery 中,我們可以使用 delay() 方法來延遲動畫的執行。

語法:

$().delay(speed)

speed 是一個必選引數,表示動畫的速度,單位為毫秒。

舉例:
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
    <style type="text/css">
        div
        {
            width:50px;
            height:50px;
            background-color:lightskyblue;
            margin-top: 6px;
        }
    </style>
    <script src="js/jquery-1.12.4.min.js"></script>
    <script>
        $(function () {
            $("div").click(function () {
                $(this).animate({ "width": "150px" }, 1000)
                     .delay(2000)
                     .animate({ "height": "150px" }, 1000);
            });
        })
    </script>
</head>
<body>
    <div></div>
</body>
</html>
預覽效果如圖 1 所示。
預覽效果
圖 1:預覽效果