我有一個動畫功能...:懸停屬性重寫jQuery效果後,如何讓它恢復?
function flashGreen(e) { backg = e.css('backgroundColor'); e.animate({ backgroundColor: "#5ccc96" }, 1000); e.animate({ backgroundColor: backg }, 500); }
,象這樣
.container { padding:5px; background:#eaeaea; } .containerr:hover { border:1px #558ecb solid; background:#7dcdf2; padding:4px; }
懸停工作根據需要之前我所說的flashGreen功能,但一個css後之後,我打電話功能,背景顏色不再改變,但邊框仍然出現。
這是怎麼回事?我注意到jQuery在animate函數後面爲backgroundColor添加了一個「style」屬性。所以我認爲「風格」是壓倒類的屬性。
在backgroundColor上調用動畫後,如何讓背景顏色懸停工作。
謝謝,你可能想把第二個'''改爲'}',以防將來有人引用它。 – DantheMan 2010-08-25 20:40:33