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

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

Go to download

Reflow is an Apache Maven site skin built on Twitter Bootstrap. It allows various structural and stylistic customizations to create a modern-looking Maven-generated website. Requires Reflow Velocity Tools.

There is a newer version: 2.4.0-beta2
Show newest version

$(document).ready(function () {
  $('#m-scroll-top').on('click', function(e) {

    function scrollTo(el, offset, clbck) {
      var pos = (el && el.length > 0) ? el.offset().top : 0;
      pos = pos + (offset ? offset : 0);

      $('html,body').animate({
          scrollTop: pos
      }, 300, clbck);
    };

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

  });
});





© 2015 - 2024 Weber Informatics LLC | Privacy Policy