要素の不透明度と背景色を同時にアニメーション化しようとしています。以下のコードを使用していますが、現在は不透明度のみがアニメートされます。
$("div.offer").mouseover(function() {
var myClass = $(this).attr("class");
$(this).stop().animate({width:'259px'}, {queue:false, duration:600, easing:'easeOutQuint'});
if (myClass == "offer windows") {
$(".offer.windows .offerBackground").stop().animate({opacity:'1'}, {queue:false, duration:600, easing:'easeOutQuint'});
$(".offer.windows .offerBackground").stop().animate({backgroundColor:'#B0C1C8'}, {queue:false, duration:600, easing:'linear'});
}
});
両方を同時にアニメートすることは可能ですか?