Keith Curreri

Smooth Scrolling Effect for Page Anchors

Adding little details to your website can really make your site stand out. One little detail that you can add is a jQuery plugin called jQuery.ScollTo(). jQuery.Scollto() allows your website to smoothly scroll to your defined anchor points.

View demonstration

This jQuery plugin was developed by Ariel Flesler. To view the original plugin site click here.

Step 1: Add anchors to your webpage

Anchors are links inside of a single webpage. For more information on adding anchors to your webpage, see my previous article, Adding Anchors to Your Webpage.

Step 2: Download Source Files

There are three files that you need to download and use in order for this plugin to work. Right click on each file, save them onto your computer, then upload them to your server using an FTP client. You can download the .zip file with all three together here.

1)   jquery.js – This is the standard jQuery javascript code used to install jQuery. Use this code or download the latest version here.

2)   jquery.smoothAnchors.js

3)  jquery.scrollTo

Step 3: Upload and call javascript on your page

Using an FTP client, add the three files to your web server. Once the files are on the server, add them between the <head> tags on your page using the code below. You may need to change the link src path depending on how you have your files organized.

<script type = 'text/javascript' src = 'jquery.js'></script>
<script type = 'text/javascript' src = 'jquery.scrollTo.js'></script>
<script type = 'text/javascript' src = 'jquery.smoothAnchors.js'></script>

Step 4: Initiate the effect using javascript

Add the following javascript between the <head> tags of your web page:

<script type = 'text/javascript'>
     $(document).ready(function(){
         $.smoothAnchors("slow");
     });
 </script>

Step 5: Test for problems

Now open your webpage in a browser and test to see if everything is working!

Conclusion

This article just shows you how to get smooth scrolling set up on your website. If you are interested in customizing this plugin more, check out its homepage to read a more detailed documentation on its use.

Share

Related posts:

  1. Adding HTML Page Anchors to your Website
  2. Adding a 404 page to your website

5 Responses to “Smooth Scrolling Effect for Page Anchors”

  1. Hi, this tutorial was great and easy to implement. Everything works in my site, but for some reason, my page jumps when I click on the internal links. Is there a way to fix this? Thanks!

    [Reply]

    Keith's reply on

    Hi Leah, could you show me a link to what you are describing and I will take a look?

    [Reply]

    Leah's reply on

    Hi Keith, I’m sorry I forgot to include the link! It’s http://www.leahtran.com.

    [Reply]

    Keith's reply on

    Hi Leah,

    It’s kinda tough to tell for sure without looking at your code directly on your server, but try adding a “padding-top: 110px” to the tag that holds the anchor (ie. href=”#design”). 110px is a rough estimate and may need to be adjusted. Let me know if that works.

    -Keith

    Leah's reply on

    Hi Keith, I tried your suggestion and it didn’t work. I even tried different pixel #s to test a wide range out–still the same amount of jumping. I finally realized the problem: I’m using images as anchors/anchor links. When I switched them to text, no more jumping, but the page didn’t stop where I wanted it to.

    Thanks again; I really appreciate the time you spent on this! I’ll just have to deal with what I have.

Leave a Reply