web/www/js/agency.js
2020-04-06 00:45:27 +02:00

57 lines
1.7 KiB
JavaScript

(function ($) {
"use strict"; // Start of use strict
// 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 - 54)
}, 1000, "easeInOutExpo");
return false;
}
}
});
// Closes responsive menu when a scroll trigger link is clicked
$('.js-scroll-trigger').click(function () {
$('.navbar-collapse').collapse('hide');
});
// Activate scrollspy to add active class to navbar items on scroll
$('body').scrollspy({
target: '#mainNav',
offset: 56
});
// Collapse Navbar
var navbarCollapse = function () {
if ($("#mainNav").offset().top > 100) {
$("#mainNav img").addClass("img-shrink");
$("#mainNav").addClass("navbar-shrink");
} else {
$("#mainNav img").removeClass("img-shrink");
$("#mainNav").removeClass("navbar-shrink");
}
};
// Collapse now if page is not at top
navbarCollapse();
// Collapse the navbar when page is scrolled
$(window).scroll(navbarCollapse);
(function () {
$('.mailtoFill').each(function () {
$(this).attr('href', 'mailto:' + $(this).text().replace('(at)', '@') + '?subject=Zpráva z webu gamesplit.cz');
});
})();
(function () {
$('.mailtoDataFill').each(function () {
$(this).attr('href', 'mailto:' + $(this).data('email').replace('(at)', '@') + '?subject=Zpráva z webu gamesplit.cz');
});
})();
})(jQuery); // End of use strict