$().animate(params, speed, fn)
params 是一個必選引數,表示屬性值列表,也就是元素在動畫中變化的屬性列表。speed 是一個可選引數,表示動畫的速度,單位為毫秒,預設為 400 毫秒。如果省略引數,則表示採用預設速度。fn也是一個可選引數,表示動畫執行完成後的回撥函數。<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> div { width:50px; height:50px; background-color:lightskyblue; } </style> <script src="js/jquery-1.12.4.min.js"></script> <script> $(function () { $("div").click(function () { $(this).animate({ "width": "150px", "height": "150px" }, 1000); }) }) </script> </head> <body> <div></div> </body> </html>預設情況下,預覽效果如圖 1 所示。