我有这个演示:
$(document).ready(function(e) {
$(".footer-list li").mouseover(function() {
$(this).animate({ backgroundColor: "#d31d4a" }, 1500);
// $(this).css("background-color", "#d31d4a");
});
});
动画代码不起作用,我不知道为什么!
当我使用.css
时,它可以正常工作。
谁能告诉我问题是什么?