简单的jQuery动画问题

时间:2011-06-11 19:36:37

标签: jquery jquery-animate

我必须做一些愚蠢的事情,因为我不能做这个简单的动画工作:P

$(document).ready(function() {
    $('li').hover(function() {
        $(this).stop().animate({
            backgroundColor: '#ff3300'
        }, 500);
    }, function() {
        $(this).stop().animate({
            backgroundColor: '#000000'
        }, 500);        
    });
});

http://jsfiddle.net/GY3UG/1/

它没有动画。

2 个答案:

答案 0 :(得分:6)

您还必须引用jQuery UI脚本文件。 (在jsFiddle中查看jQuery UI 1.8.7框)。这就是animate函数所在的位置。

http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.js

答案 1 :(得分:0)

我会亲自选择jQuery Color,因为它是4kb。