想我有絕對位置的CSS {bottom:0px;}
一個div,那麼我想它崩潰了,我用與jQuery動畫功能及絕對位置的效果
$('#id').animate({ height: "0" }, { duration: 1000 });
顯然從上到下,這意味着底部固定崩潰,頂部回落。
接下來,我希望它與頂部固定,底部移動擴大,所以我寫:
$('#id2').animate({ height: "0" }, { duration: 1000 }).queue(function() {
$('#id2').css({ top: '0' }).animate({ height: "50" }, { duration: 1000 });
});
但它不會消耗,所以有什麼錯我的代碼
謝謝
這裏是我的在線示例: http://jsfiddle.net/hh54188/pngK4/
我相信你一定會喜歡閱讀[這](http://stackoverflow.com/q/1058158/601179) – gdoron 2012-01-29 13:02:38