(function ($) { $(window).load(function () { $("#pre-loader").delay(500).fadeOut(); $(".loader-wrapper").delay(1000).fadeOut("slow"); }); $('.navbar-toggle').on('click', function () { if (!$('header').hasClass('fixed')) { /* navbar toggle click */ } }); /* menu hover */ var limit = 767; var window_width = window.innerWidth; if (window_width > limit) { $(".dropdown").hover( function () { $('.dropdown-menu', this).stop(true, true).fadeIn("slow"); $(this).toggleClass('open'); $('b', this).toggleClass("caret caret-up"); }, function () { $('.dropdown-menu', this).stop(true, true).fadeOut("slow"); $(this).toggleClass('open'); $('b', this).toggleClass("caret caret-up"); }); } $(document).ready(function () { $('.contact-section form input[type="submit"]').wrap('
'); $('ul.nav a').each(function () { $(this).attr('data-scroll', ''); }); /*-- resize parallax size --*/ $('ul#filter li a').click(function (e) { $(window).trigger('resize.px.parallax'); }); /*-- Magnific Popup --*/ $('.image-popup-link').magnificPopup({ type: 'image', closeOnBgClick: true, fixedContentPos: false, }); $('.video-popup-link').magnificPopup({ type: 'iframe', closeOnBgClick: true, fixedContentPos: false, }); /*-- Button Up --*/ var btnUp = $('
', {'class': 'btntoTop'}); btnUp.appendTo('body'); $(document).on('click', '.btntoTop', function (e) { e.preventDefault(); $('html, body').animate({ scrollTop: 0 }, 700); }); $(window).on('scroll', function () { if ($(this).scrollTop() > 200) $('.btntoTop').addClass('active'); else $('.btntoTop').removeClass('active'); }); if ($('a').hasClass('custom-logo-link') && $('a.custom-logo-link img').attr('src') != '') { $('h1.site-title').css({'display': 'none'}); } else { $('h1.site-title').css({'display': 'block'}); } /*-- Window scroll function --*/ $(window).on('scroll', function () { /* sticky header */ var sticky = $('header'), scroll = $(window).scrollTop(); var scroll_top_num = 90; if ($('body').hasClass('admin-bar')) { scroll_top_num = scroll_top_num + 32; } if (scroll >= 90) { sticky.addClass('fixed'); $('#logo-alt').css({'display': 'block'}); $('a.custom-logo-link').css({'display': 'none'}); $(window).trigger('resize.px.parallax'); if ($('a').hasClass('logo-alt') && $('#logo-alt img').attr('src') != '') { $('h1.site-title').css({'display': 'none'}); } else { $('h1.site-title').css({'display': 'block'}); } } else { sticky.removeClass('fixed'); $('#logo-alt').css({'display': 'none'}); $('a.custom-logo-link').css({'display': 'block'}); $(window).trigger('resize.px.parallax'); if ($('a').hasClass('custom-logo-link') && $('a.custom-logo-link img').attr('src') != '') { $('h1.site-title').css({'display': 'none'}); } else { $('h1.site-title').css({'display': 'block'}); } } }); }); })(this.jQuery);