cannabinieri website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
543 B

3 years ago
  1. $(document).ready(function(){
  2. // Add smooth scrolling to all links with #
  3. $("a").on('click', function(event) {
  4. if (this.hash !== "") {
  5. // Prevent default anchor click behavior
  6. event.preventDefault();
  7. // Store hash
  8. var hash = this.hash;
  9. $('html, body').animate({
  10. scrollTop: $(hash).offset().top
  11. }, 1000, function(){
  12. // Add hash (#) to URL when done scrolling (default click behavior)
  13. window.location.hash = hash;
  14. });
  15. } // End if
  16. });
  17. });