123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- (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 - 56)
- }, 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: 57
- });
- // 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);
- // Scroll reveal calls
- window.sr = ScrollReveal();
- sr.reveal('.sr-icon-1', {
- delay: 200,
- scale: 0
- });
- sr.reveal('.sr-icon-2', {
- delay: 400,
- scale: 0
- });
- sr.reveal('.sr-icon-3', {
- delay: 600,
- scale: 0
- });
- sr.reveal('.sr-icon-4', {
- delay: 800,
- scale: 0
- });
- sr.reveal('.sr-button', {
- delay: 200,
- distance: '15px',
- origin: 'bottom',
- scale: 0.8
- });
- sr.reveal('.sr-contact-1', {
- delay: 200,
- scale: 0
- });
- sr.reveal('.sr-contact-2', {
- delay: 400,
- scale: 0
- });
- // Magnific popup calls
- $('.popup-gallery').magnificPopup({
- delegate: 'a',
- type: 'image',
- tLoading: 'Loading image #%curr%...',
- mainClass: 'mfp-img-mobile',
- gallery: {
- enabled: true,
- navigateByImgClick: true,
- preload: [0, 1]
- },
- image: {
- tError: '<a href="%url%">The image #%curr%</a> could not be loaded.'
- }
- });
- })(jQuery); // End of use strict
|