I want to animate a scroll to the bottom of the viewport with jQuery. Is there a plugin available which isn't overkill (i.e. without a huge feature set for this small task);
Is there a plugin available or a way to do this natively with jQuery?
|
I want to animate a scroll to the bottom of the viewport with jQuery. Is there a plugin available which isn't overkill (i.e. without a huge feature set for this small task); Is there a plugin available or a way to do this natively with jQuery?
| ||||
|
feedback
|
|
jQuery makes things like this so trivial that you just dont need a plugin. Example:
Instead of | |||||||
feedback
|
|
you can always do the following line to scroll an element to the bottom
| ||||
|
feedback
|
|
Check the jQuery.ScrollTo plugin, you can scroll to determined positions (fixed or absolute), using selectors, DOM elements, and more... Give a look to the demos... | |||
|
feedback
|
|
To elaborate on the answers from Darko Z and CMS, here is what I used to animate scrolling to a specific element:
| |||
|
feedback
|
|
You can look into the scrollTop function. You can create an animation using it and some timer. | |||
|
feedback
|