I am trying to get my banner to shrink on scroll. How can I get the text to start in the middle of the banner, and ends at the middle when shrinking? Right now the text fall down on scroll instead of going up.
Heres what I have so far:
$(document).scroll(function(){
if ($(this).scrollTop()>175){
// animate fixed div to small size:
$('.wrapper').stop().animate({ height: 57 , 'padding-top': 20},100);
} else {
// animate fixed div to original size
$('.wrapper').stop().animate({ height: 115, 'padding-top': 0},100);
}
});