Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to animate a div height in jQuery by allowing both the top and bottom of the div to expand? I want to do something like on the LDS homepage: www.lds.org. The div on the left of the top banner image is the type of thing I'm going for.

share|improve this question

1 Answer

You can create the illusion that it is expanding in both up and down directions, by moving the div upwards while animating it's height.

<html>

<head>
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script>
$(document).ready( function() {
    var d = $('div');
    d.css('top', '250px').css('height', 0);
    d.animate( {
        height: '500px',
        top: 0
    } , 3000 );
} );
</script>
<style>
div {
    width: 500px;
    height: 500px;
    background: #f00;
    position: absolute;
}
</style>
</head>

<body>
<div></div>
</body>

</html>
share|improve this answer
Thanks! Can you tell me why the position has to be declared as absolute? – sarahLuo Nov 17 '12 at 21:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.