的填充我很新的jQuery和CSS,我試圖動畫類.iDoElement的兩個div用下面的jQuery代碼:動畫寬度爲零包括DIV
$('.iDoElement').each(function() {
var randomDelay = Math.floor(Math.random() * 600);
$(this).delay(randomDelay).animate ({width:0}, 1000);
});
.. 。但是這兩個div都有填充右和填充左定義,這意味着他們不打算寬度0(我在網上讀取div的寬度影響其內容並忽略填充)。
如何解決?唯一的解決方案是animatind padding-left和padding-right是否爲零?
在此先感謝
http://stackoverflow.com/questions/3965092/jquery-animate-outerwidth – 2013-02-22 10:14:48
看看這個:HTTP:// API .jquery.com/outerWidth/ – 2013-02-22 10:17:24
@BillyMoat謝謝,但我該如何在動畫塊中使用outerWitdh(true)技術?正如我所說我很新的jQuery :) – 2013-02-22 10:22:12