$().fadeTo(speed, opacity, fn)
speed 是一個可選引數,表示動畫的速度,單位為毫秒。如果省略引數,則表示採用預設速度。speed 有兩種取值,一種是“字串”,另一種是“數值”,如表 1 所示。字串 | 數值 |
---|---|
slow | 200 |
normal | 400(預設值) |
fast | 600 |
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-1.12.4.min.js"></script> <script> $(function () { $("img").hover(function () { $(this).fadeTo(200, 0.6); }, function () { $(this).fadeTo(200, 1.0); }) }) </script> </head> <body> <img src="img/jquery.png" alt=""/> </body> </html>