$().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 所示。