2016-06-22 21:35:40 +02:00
|
|
|
(function($) {
|
2017-08-11 21:12:34 +02:00
|
|
|
"use strict"; // Start of use strict
|
2016-06-22 21:35:40 +02:00
|
|
|
|
2017-08-11 21:12:34 +02:00
|
|
|
// Smooth scrolling using jQuery easing
|
2017-08-19 23:01:59 +02:00
|
|
|
$('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() {
|
2017-08-11 21:12:34 +02:00
|
|
|
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 - 54)
|
|
|
|
}, 1000, "easeInOutExpo");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-08-13 03:01:38 +02:00
|
|
|
|
2017-08-19 23:01:59 +02:00
|
|
|
// Closes responsive menu when a scroll trigger link is clicked
|
2017-08-19 23:15:25 +02:00
|
|
|
$('.js-scroll-trigger').click(function() {
|
2017-08-19 23:01:59 +02:00
|
|
|
$('.navbar-collapse').collapse('hide');
|
|
|
|
});
|
|
|
|
|
2017-08-11 21:12:34 +02:00
|
|
|
// Activate scrollspy to add active class to navbar items on scroll
|
|
|
|
$('body').scrollspy({
|
|
|
|
target: '#mainNav',
|
2018-01-20 00:37:06 +01:00
|
|
|
offset: 56
|
2017-08-11 21:12:34 +02:00
|
|
|
});
|
2016-06-22 21:35:40 +02:00
|
|
|
|
2017-10-21 00:37:01 +02:00
|
|
|
// Collapse Navbar
|
2017-09-27 07:27:36 +02:00
|
|
|
var navbarCollapse = function() {
|
2017-08-11 21:12:34 +02:00
|
|
|
if ($("#mainNav").offset().top > 100) {
|
|
|
|
$("#mainNav").addClass("navbar-shrink");
|
|
|
|
} else {
|
|
|
|
$("#mainNav").removeClass("navbar-shrink");
|
|
|
|
}
|
2017-09-27 07:27:36 +02:00
|
|
|
};
|
|
|
|
// Collapse now if page is not at top
|
|
|
|
navbarCollapse();
|
|
|
|
// Collapse the navbar when page is scrolled
|
|
|
|
$(window).scroll(navbarCollapse);
|
2014-08-13 03:01:38 +02:00
|
|
|
|
2017-11-02 22:28:12 +01:00
|
|
|
// Hide navbar when modals trigger
|
|
|
|
$('.portfolio-modal').on('show.bs.modal', function(e) {
|
2018-08-24 00:21:13 +02:00
|
|
|
$('.navbar').addClass('d-none');
|
2017-11-02 22:28:12 +01:00
|
|
|
})
|
|
|
|
$('.portfolio-modal').on('hidden.bs.modal', function(e) {
|
2018-08-24 00:21:13 +02:00
|
|
|
$('.navbar').removeClass('d-none');
|
2017-11-02 22:28:12 +01:00
|
|
|
})
|
|
|
|
|
2016-06-22 21:35:40 +02:00
|
|
|
})(jQuery); // End of use strict
|