我有以下代码来演示我想制作动画的表单框:
JS代码是:
$(".login-form").click(function() {
$(".login-form").animate({width:500, height: 300});
$(".footer").animate({width:430, height: 95});
});
HTML是:
<div id="wrapper">
<form name="login-form" class="login-form" action="" method="post">
<div class="gradient"></div>
<div class="header">
<h1>Logo here</h1>
<span>test</span></div>
<div class="content">
blah
</div>
<div class="footer">
<input type="button" name="submit" value="Click to test grow" class="register" />
</div>
</form>
</div>
目前它只是重新调整大小而不在屏幕上重新居中。
为了做到这一点,我需要添加什么?