How to animate "scrollTop()"?
I use this code for fixed header of my page:
jQuery:
$(window).bind('scroll resize', function() {
$('#header').css('top', $(this).scrollTop());
});
CSS:
#header{
position: relative;
}
How can I animate scrollTop()?
No comments:
Post a Comment