js-
$(".inner").hover(function () {
$(this).stop(true, false).animate({
height: "400px"
});
}, function () {
$(this).stop(true, false).animate({
height: "100px"
});
});
css-
.inner {
height:100px;
width:400px;
background-color:#333;
margin-bottom:0px;
}
.outer {
height:400px;
width:400px;
background-color:#999;
}
私がやりたいのは、小さなボックスが大きなボックス内の下部に位置合わせされ、アニメーションが上方向に行われることですが、下部とマージン下部は役に立ちません。ここにリンクがあります-