(function () { 'use strict'; var isMobile = { Android: function () { return navigator.userAgent.match(/Android/i); } , BlackBerry: function () { return navigator.userAgent.match(/BlackBerry/i); } , iOS: function () { return navigator.userAgent.match(/iPhone|iPad|iPod/i); } , Opera: function () { return navigator.userAgent.match(/Opera Mini/i); } , Windows: function () { return navigator.userAgent.match(/IEMobile/i); } , any: function () { return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows()); } }; // Full Height var fullHeight = function () { if (!isMobile.any()) { $('.js-fullheight').css('height', $(window).height()); $(window).resize(function () { $('.js-fullheight').css('height', $(window).height()); }); } }; // Animations var contentWayPoint = function () { var i = 0; $('.animate-box').waypoint(function (direction) { if (direction === 'down' && !$(this.element).hasClass('animated')) { i++; $(this.element).addClass('item-animate'); setTimeout(function () { $('body .animate-box.item-animate').each(function (k) { var el = $(this); setTimeout(function () { var effect = el.data('animate-effect'); if (effect === 'fadeIn') { el.addClass('fadeIn animated'); } else if (effect === 'fadeInLeft') { el.addClass('fadeInLeft animated'); } else if (effect === 'fadeInRight') { el.addClass('fadeInRight animated'); } else { el.addClass('fadeInUp animated'); } el.removeClass('item-animate'); }, k * 200, 'easeInOutExpo'); }); }, 100); } }, { offset: '85%' }); }; // Burger Menu var burgerMenu = function () { $('.js-addo-nav-toggle').on('click', function (event) { event.preventDefault(); var $this = $(this); if ($('body').hasClass('offcanvas')) { $this.removeClass('active'); $('body').removeClass('offcanvas'); } else { $this.addClass('active'); $('body').addClass('offcanvas'); } }); }; // Click outside of offcanvass var mobileMenuOutsideClick = function () { $(document).click(function (e) { var container = $("#addo-aside, .js-addo-nav-toggle"); if (!container.is(e.target) && container.has(e.target).length === 0) { if ($('body').hasClass('offcanvas')) { $('body').removeClass('offcanvas'); $('.js-addo-nav-toggle').removeClass('active'); } } }); $(window).scroll(function () { if ($('body').hasClass('offcanvas')) { $('body').removeClass('offcanvas'); $('.js-addo-nav-toggle').removeClass('active'); } }); }; // Slider var sliderMain = function () { $('.addo-hero .flexslider').flexslider({ animation: "fade" , slideshowSpeed: 5000 , directionNav: true , start: function () { setTimeout(function () { $('.slider-text').removeClass('animated fadeInUp'); $('.flex-active-slide').find('.slider-text').addClass('animated fadeInUp'); }, 500); } , before: function () { setTimeout(function () { $('.slider-text').removeClass('animated fadeInUp'); $('.flex-active-slide').find('.slider-text').addClass('animated fadeInUp'); }, 500); } }); }; // Document on load. $(function () { fullHeight(); contentWayPoint(); burgerMenu(); mobileMenuOutsideClick(); sliderMain(); }); // Smooth Scrolling $('a[href*="#"]') // Remove links that don't actually link to anything .not('[href="#"]') .not('[href="#0"]') .click(function(event) { // On-page links if ( location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname ) { // Figure out element to scroll to var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); // Does a scroll target exist? if (target.length) { // Only prevent default if animation is actually gonna happen event.preventDefault(); $('html, body').animate({ scrollTop: target.offset().top }, 1000, function() { // Callback after animation // Must change focus! var $target = $(target); $target.focus(); if ($target.is(":focus")) { // Checking if the target was focused return false; } else { $target.attr('tabindex','-1'); // Adding tabindex for elements not focusable $target.focus(); // Set focus again }; }); } } }); // Button var buttons = document.querySelectorAll(".btn .btn-contact .blog-entry"); for(var i = 0; i < buttons.length; i++) { var button = buttons[i]; button.addEventListener("click", function() { if(!button.classList.contains("active")) button.classList.add("active"); else button.classList.remove("active"); }); } }()); // Scroll back to top var progressPath = document.querySelector('.progress-wrap path'); var pathLength = progressPath.getTotalLength(); progressPath.style.transition = progressPath.style.WebkitTransition = 'none'; progressPath.style.strokeDasharray = pathLength + ' ' + pathLength; progressPath.style.strokeDashoffset = pathLength; progressPath.getBoundingClientRect(); progressPath.style.transition = progressPath.style.WebkitTransition = 'stroke-dashoffset 10ms linear'; var updateProgress = function () { var scroll = $(window).scrollTop(); var height = $(document).height() - $(window).height(); var progress = pathLength - (scroll * pathLength / height); progressPath.style.strokeDashoffset = progress; } updateProgress(); $(window).scroll(updateProgress); var offset = 150; var duration = 550; jQuery(window).on('scroll', function () { if (jQuery(this).scrollTop() > offset) { jQuery('.progress-wrap').addClass('active-progress'); } else { jQuery('.progress-wrap').removeClass('active-progress'); } }); jQuery('.progress-wrap').on('click', function (event) { event.preventDefault(); jQuery('html, body').animate({ scrollTop: 0 }, duration); return false; })