如何动画()

时间:2013-03-14 22:19:26

标签: jquery

Dreamweaver没有说我有任何语法错误,为什么我的背景颜色不变?

jQuery的:

$(function () {
    $("#contact").hover(function () {
        $("#contactform").stop().fadeIn(500);
        $(this).stop().animate({
            height: "260px",
            background: "blue"
        });
    }, function () {
        $("#contactform").stop().fadeOut(500);
        $(this).stop().animate({
            height: "20px",
        });

    });
});

1 个答案:

答案 0 :(得分:1)

只更改颜色的正确标签应为'background-color'

$(this).stop().animate({
    height: "260px",
    'background-color': "blue"
});

还要确保包含jQuery UI。