17
jQuery 애니메이션 backgroundColor
마우스 오버에서 jQuery를 사용하여 backgroundColor의 변경 사항을 애니메이션하려고합니다. 몇 가지 예를 확인한 후 올바른 것으로 보입니다. fontSize와 같은 다른 속성과 작동하지만 backgroundColor를 사용하면 "잘못된 속성"js 오류가 발생합니다. 내가 작업하고있는 요소는 div입니다. $(".usercontent").mouseover(function() { $(this).animate({ backgroundColor: "olive" }, "slow"); }); 어떤 아이디어?