2020-04-07 00:19:58 +02:00
|
|
|
/*!
|
2020-05-18 23:16:02 +02:00
|
|
|
* Start Bootstrap - Agency v6.0.1 (https://startbootstrap.com/template-overviews/agency)
|
2020-04-07 00:19:58 +02:00
|
|
|
* Copyright 2013-2020 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
|
|
|
|
2020-04-10 00:05:24 +02:00
|
|
|
// Smooth scrolling using jQuery easing
|
|
|
|
$('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function () {
|
|
|
|
if (
|
|
|
|
location.pathname.replace(/^\//, "") ==
|
|
|
|
this.pathname.replace(/^\//, "") &&
|
|
|
|
location.hostname == this.hostname
|
|
|
|
) {
|
|
|
|
var target = $(this.hash);
|
|
|
|
target = target.length
|
|
|
|
? target
|
|
|
|
: $("[name=" + this.hash.slice(1) + "]");
|
|
|
|
if (target.length) {
|
|
|
|
$("html, body").animate(
|
|
|
|
{
|
|
|
|
scrollTop: target.offset().top - 72,
|
|
|
|
},
|
|
|
|
1000,
|
|
|
|
"easeInOutExpo"
|
|
|
|
);
|
|
|
|
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
|
|
|
|
$(".js-scroll-trigger").click(function () {
|
|
|
|
$(".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
|
|
|
|
$(window).scroll(navbarCollapse);
|
2016-06-22 21:35:40 +02:00
|
|
|
})(jQuery); // End of use strict
|