This repository has been archived on 2025-08-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
hugo-mistergeek/docs/theme/Mono v10.0.1 HTML5/Documentation/assets/js/functions.js
2025-08-18 17:15:47 +02:00

24 lines
582 B
JavaScript

$(function() {
"use strict";
/*===============================================
Scroll Spy
===============================================*/
$('body').scrollspy({
target: '.nav',
offset: 50
});
/*===============================================
Smooth Scrolling
===============================================*/
var htmlBody = $("html,body");
var smoothLinks = $(".nav-link");
smoothLinks.on("click", function(e) {
htmlBody.animate({scrollTop: $(this.hash).offset().top - 50}, 700, "easeInOutQuart");
e.preventDefault();
});
});