假設我有我的頁面框:混淆jQuery中的動畫功能
<div id="test" style="width:200px; height:200px; background:yellow">
this is a test
</div>
我只是包括「jQuery的1.6.2.min.js」在我的網頁
那麼我想更改字體大小,所以我用
$('#test').animate({ fontSize: "10em"}, "slow");
然後我想改變「測試」框 的background-color
我寫:
$('#test').animate({ 'background-color': '#000000' }, "slow");
但直到我包括「jquery-ui-1.8.5.custom.min.js」它不起作用。
我認爲原單「jQuery的1.6.2.min.js」文件已經包括所有的動畫功能, 字號和背景顏色都CSS屬性,但原來只能支持 字體大小變化?爲什麼?
我的問題是,我認爲包「jquery-ui-1.8.5.custom.min.js」只是用於UI或其他一些東西 。兩者都用於改變CSS屬性。
這個答案應該可以幫助您:
http://stackoverflow.com/questions/190560/ jQuery的動畫-的backgroundColor/190571#190571 –