All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.reflow-scroll.js Maven / Gradle / Ivy

Go to download

This is a customized skin derived from http://andriusvelykis.github.io/reflow-maven-skin/

There is a newer version: 1.2.0
Show newest version
// Support for smooth scrolling
// (simplified version, taken from http://stackoverflow.com/a/14805098/1173184)
$(window).load(function(){
  $('a[href^="#"]:not([href^="#carousel"]):not([data-toggle="dropdown"])').on('click', function(e) {

     // prevent default anchor click behavior
     e.preventDefault();

     // store hash
     var hash = this.hash;

     // animate
     $('html, body').animate({
         scrollTop: $(this.hash).offset().top
       }, 300, function(){

         // when done, add hash to url
         // (default click behaviour)
         window.location.hash = hash;
       });

  });
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy