2020-04-07 00:19:58 +02:00
|
|
|
/*!
|
2021-03-29 21:32:24 +02:00
|
|
|
* Start Bootstrap - Agency v6.0.4 (https://startbootstrap.com/theme/agency)
|
2021-03-08 11:38:34 +01:00
|
|
|
* Copyright 2013-2021 Start Bootstrap
|
2020-06-17 23:51:44 +02:00
|
|
|
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-agency/blob/master/LICENSE)
|
2020-04-07 00:19:58 +02:00
|
|
|
*/
|
2020-04-10 00:05:24 +02:00
|
|
|
(function ($) {
|
|
|
|
"use strict"; // Start of use strict
|
2016-06-22 21:35:40 +02:00
|
|
|
|
2021-03-29 21:59:18 +02:00
|
|
|
// Smooth scrolling using anime.js
|
2021-03-08 11:38:34 +01:00
|
|
|
$('a.js-scroll-trigger[href*="#"]:not([href="#"])').on('click', function () {
|
2020-04-10 00:05:24 +02:00
|
|
|
if (
|
|
|
|
location.pathname.replace(/^\//, "") ==
|
2021-03-29 21:59:18 +02:00
|
|
|
this.pathname.replace(/^\//, "") &&
|
2020-04-10 00:05:24 +02:00
|
|
|
location.hostname == this.hostname
|
|
|
|
) {
|
|
|
|
var target = $(this.hash);
|
2021-03-29 21:59:18 +02:00
|
|
|
target = target.length ?
|
|
|
|
target :
|
|
|
|
$("[name=" + this.hash.slice(1) + "]");
|
2020-04-10 00:05:24 +02:00
|
|
|
if (target.length) {
|
2021-03-08 11:38:34 +01:00
|
|
|
anime({
|
|
|
|
targets: 'html, body',
|
|
|
|
scrollTop: target.offset().top - 72,
|
|
|
|
duration: 1000,
|
|
|
|
easing: 'easeInOutExpo'
|
|
|
|
});
|
2020-04-10 00:05:24 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-08-13 03:01:38 +02:00
|
|
|
|
2020-04-10 00:05:24 +02:00
|
|
|
// Closes responsive menu when a scroll trigger link is clicked
|
2021-03-08 11:38:34 +01:00
|
|
|
$(".js-scroll-trigger").on('click', function () {
|
2020-04-10 00:05:24 +02:00
|
|
|
$(".navbar-collapse").collapse("hide");
|
|
|
|
});
|
2017-08-19 23:01:59 +02:00
|
|
|
|
2020-04-10 00:05:24 +02:00
|
|
|
// Activate scrollspy to add active class to navbar items on scroll
|
|
|
|
$("body").scrollspy({
|
|
|
|
target: "#mainNav",
|
|
|
|
offset: 74,
|
|
|
|
});
|
2014-08-13 03:01:38 +02:00
|
|
|
|
2020-04-10 00:05:24 +02:00
|
|
|
// Collapse Navbar
|
|
|
|
var navbarCollapse = function () {
|
|
|
|
if ($("#mainNav").offset().top > 100) {
|
|
|
|
$("#mainNav").addClass("navbar-shrink");
|
|
|
|
} else {
|
|
|
|
$("#mainNav").removeClass("navbar-shrink");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// Collapse now if page is not at top
|
|
|
|
navbarCollapse();
|
|
|
|
// Collapse the navbar when page is scrolled
|
2021-03-08 11:38:34 +01:00
|
|
|
$(window).on('scroll', navbarCollapse);
|
2021-03-29 21:59:18 +02:00
|
|
|
|
2016-06-22 21:35:40 +02:00
|
|
|
})(jQuery); // End of use strict
|