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;
}
我想要做的是较小的盒子与大盒子内的底部对齐,并且动画发生在向上的方向,但底部和边距底部没有任何帮助。链接在这里-