我試圖使用Jquery動畫功能來更改div的背景顏色。如果一個隨機數低於50,則生成紅色,如果高於50,則生成綠色。除了顏色變化之外,一切似乎都奏效。我在這裏做錯了什麼?基於值的背景顏色褪色
function randomInt(min,max) {
return Math.floor(Math.random() * (max - min + 1) + min);
}
if (randomInt(1, 100) > 50) {
$('#status').html("win").animate({backgroundColor: "green" }, "fast");
} else {
$('#status').html("lose").animate({ backgroundColor: "red" }, "fast");
}
本帖](http://stackoverflow.com/q/190560/1806218)回答你的問題。 – wannaKnowItAll
Duplicated http://stackoverflow.com/questions/190560/jquery-animate-backgroundcolor –