感谢您的阅读。我想动画一个div,以便它同时向上和向下扩展以匹配顶部div和底部div。目前它只向下扩展,你可以看到它在这里工作:http://www.jjtans.com/www/New_folder
这是我的jquery:
$(document).ready(function()
{
$('#article').toggle(
function()
{
$('#register').animate({"bottom": "300px"}, 1000);
$('#message').animate({"top": "300px"}, 1000);
$('#content').delay(100).show(1000).animate({
height: '150px'}, 1000);
},
function()
{
$('#content').delay(0).hide(500);
$('#register').animate({"bottom": "0px"}, "slow");
$('#message').animate({"top": "25px"}, "slow");
});
});
非常感谢您提供任何帮助。