vote up 2 vote down star
1

Facebook has a nice scroll effect which I would like to replicate with jQuery. When you load a page it starts at the top then scrolls to the selected anchor.

I've tried doing this (page.html#anchor) and using the scrolling plugin for jQuery however it just goes straight to that anchor without using the scroll effect.

So can I delay the scroll when the page is loaded then use jQuery to do the scrolling instead?

I apologise if I have explained it badly.

flag

74% accept rate

1 Answer

vote up 5 vote down check

http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12

basically, you're going to want to animate the scrollTop CSS property.

$(document).animate({scrollTop: AMOUNT}, 1000);
link|flag
But when I load the page it scrolls straight to that element. I want it to wait until the page loads then animate the scroll. – Ben Shelock Aug 16 at 17:07
just wrap that in a $(document).ready(function() { [code] }); Could also bind it to any other event really. The possibilities are limitless. – mikeycgto Aug 16 at 18:17

Your Answer

Get an OpenID
or

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