jQuery- Parallax Scroll using jQuery

Parallax Scroll using jQuery

HTML:


Scroll Content 1
Scroll Content 2
Scroll Content 3
Scroll Content 4
Scroll Content 5
SCRIPT:
jQuery(function() {
  jQuery('a[href*=#]:not([href=#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {

      var target = jQuery(this.hash);
      target = target.length ? target : jQuery('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        jQuery('html,body').animate({
          scrollTop: target.offset().top - 140
        }, 1000);
        return false;
      }
    }
  });
});

NOTE:

1. Please be sure, jQuery library has included for the page.

2. Put sufficient content section part.