Animated scroll to anchor method with jQuery
It’s a one line but can add a really nice effect to your website.
function scrollToAnchor(id){ $('html,body').animate({scrollTop: $("#"+id).offset().top}, 'slow'); }
you can change effect from slow to normal or fast or even a int in milliseconds.
from your code call it as:
scrollToAnchor("your-anchor-id");
Great, now as simple scroller works, lets add some effects.
In order to use .effect plugin you would have to include jQuery UI library into your web page.
http://jqueryui.com/download
or you can just use this version
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js" type="text/javascript"></script>
function scrollToAnchorWithEffect(id, duration){ $('html,body').animate({scrollTop: $("#"+id).offset().top}, 'slow', function(){ if($.ui.version){ $("#"+id).effect("highlight", {'color': '#ff0000'}, duration); } }); }
from your code call it as, where 2000 is an duration of the effect in milliseconds:
scrollToAnchorWithEffect("your-anchor-id", 2000);
Happy coding!
Dima Svirid
Software architect. Ajax/Javascript, HTML5, Android, iPhone/iPad, JAVA, PHP, Cold Fusion, SQL, Air, Flash, Open source software, Frameworks
2 Responses to Animated scroll to anchor method with jQuery
Leave a Reply Cancel reply
You must be logged in to post a comment.
SEARCH ARTICLES & TUTORIALS
MOST POPULAR TUTORIALS
Generating PDF Documents with Adobe Air Javascript SDK and jQuery
I am not a Flex guy and I don't think I will ever be. While searching [...]
Search Engine Optimization - Do It Yourself!
This is Part 1 of "Search Engine Optimization – Do It Yourself!" ser[...]
jQuery Object Oriented Plugins
Many people have asked me, if jQuery is object oriented and how they c[...]
Spring-MVC Tutorial (Part 1)
Overview This document is a step-by-step guide on how to de[...]
Animated scroll to anchor method with jQuery
It's a one line but can add a really nice effect to your website. f[...]
RECENT POSTS
How to calibrate Samsung Galaxy battery
There is no guarantee that this method will work for you. However it d[...]
Real Estate Social Network new Toronto Startup
Wanted to write for a long time about a new startup for Real Estate ag[...]
Eclipse Keyboard Shortcuts for Developers
Eclipse Navigation Shortcuts Every Java Programmer Should Know Ctrl [...]
Duplicated Content
This is Part 4 of "Search Engine Optimization – Do It Yourself!" ser[...]
301 Redirect
There are many ways how you can do 301 redirect, I will mention just t[...]





funny script
coool, tanks