// if ($(window).width() < 1020) {} $(window).on("load", function () { "use strict"; /* =================================== Loading Timeout ====================================== */ $('.side-menu').removeClass('hidden'); setTimeout(function(){ $('.loader-bg').fadeToggle(); }, 1000); }); /* =================================== Header appear ====================================== */ jQuery(function ($) { "use strict"; $(window).on('scroll', function () { if ($(this).scrollTop() > 260) { // Set position from top to add class $('header').addClass('header-appear'); } else { $('header').removeClass('header-appear'); } }); }); /* =================================== Nav Scroll ====================================== */ $(".scroll").on("click", function (event) { event.preventDefault(); $("html,body").animate({ scrollTop: $(this.hash).offset().top}, 1200); }); /* =================================== Side Menu ====================================== */ if ($("#sidemenu_toggle").length) { $("#sidemenu_toggle").on("click", function () { $(".pushwrap").toggleClass("active"); $(".side-menu").addClass("side-menu-active"), $("#close_side_menu").fadeIn(700) }), $("#close_side_menu").on("click", function () { $(".side-menu").removeClass("side-menu-active"), $(this).fadeOut(200), $(".pushwrap").removeClass("active") }), $(".side-nav .navbar-nav .nav-link").on("click", function () { $(".side-menu").removeClass("side-menu-active"), $("#close_side_menu").fadeOut(200), $(".pushwrap").removeClass("active") }), $("#btn_sideNavClose").on("click", function () { $(".side-menu").removeClass("side-menu-active"), $("#close_side_menu").fadeOut(200), $(".pushwrap").removeClass("active") }); } /* =================================== Counters ====================================== */ $(".about-us").appear(function () { $('.stats-number-inner span').each(function () { $(this).prop('Counter', 0).animate({ Counter: $(this).text() }, { duration: 3000, easing: 'swing', step: function (now) { $(this).text(Math.ceil(now)); } }); }); }); //*******************TEAM OWL CAROUSAL************************* $('#team-carousal').owlCarousel({ loop:true, margin:0, nav:true, dots:false, responsive:{ 0:{ items:1 }, 600:{ items:1 }, 1000:{ items:1 } } }); /* =================================== Cube Portfolio ====================================== */ $('#js-grid-mosaic').cubeportfolio({ filters: '#js-filters-mosaic', layoutMode: 'grid', sortByDimension: true, mediaQueries: [{ width: 1500, cols: 2, }, { width: 1100, cols: 2, }, { width: 768, cols: 1, }, { width: 480, cols: 1, options: { gapHorizontal: 60 } }], defaultFilter: '*', animationType: 'fadeIn', gapHorizontal: 50, gapVertical: 50, gridAdjustment: 'responsive', caption: 'zoom', // lightbox lightboxDelegate: '.cbp-lightbox', lightboxGallery: true, lightboxTitleSrc: 'data-title', lightboxCounter: '
{{current}} of {{total}}
', plugins: { loadMore: { element: "#js-loadMore-lightbox-gallery", action: "click", loadItems: 5, } } }) .on('initComplete.cbp', function () { // your functionality var $this = $(this); if ($(".cbp-filter-item-active").attr("data-filter") === "*") { $("#js-loadMore-lightbox-gallery").addClass("active"); } else { $("#js-loadMore-lightbox-gallery").removeClass("active"); } $this.find(".cbp-wrapper").find(".cbp-item:not(.cbp-item-off)").each(function (index) { $(this).removeClass("even"); console.log(); var val = index + 1; if ($(this).css('left') !== "0px") { $(this).addClass("even"); } }); }) .on('onAfterLoadMore.cbp', function () { // your functionality var $this = $(this); $("#js-loadMore-lightbox-gallery a").addClass("d-none"); $("#js-loadMore-lightbox-gallery").addClass("active-outer"); $this.find(".cbp-wrapper").find(".cbp-item:not(.cbp-item-off)").each(function (index) { $(this).removeClass("even"); console.log(); var val = index + 1; if ($(this).css('left') !== "0px") { $(this).addClass("even"); } }); }) .on('filterComplete.cbp', function () { // your functionality var $this = $(this); if ($(".cbp-filter-item-active").attr("data-filter") === "*") { $("#js-loadMore-lightbox-gallery").addClass("active"); $("#js-loadMore-lightbox-gallery").removeClass("d-none"); } else { $("#js-loadMore-lightbox-gallery").removeClass("active"); $("#js-loadMore-lightbox-gallery").addClass("d-none"); } $this.find(".cbp-wrapper").find(".cbp-item:not(.cbp-item-off)").each(function (index) { $(this).removeClass("even"); var val = index + 1; if ($(this).css('left') !== "0px") { $(this).addClass("even"); } }); }); /*===================================== Client Carousel ======================================*/ $('.testimonial-box').owlCarousel({ loop: true, margin: 20, slideSpeed: 5000, slideTransition: 'linear', nav: false, dots: false, autoplay: true, autoplayTimeout: 8000, autoplayHoverPause: true, responsive: { 0: { items: 1 }, 600: { items: 1 }, 1000: { items: 1 }, } }); /*=================================== Go Top Scroll ====================================== */ $(function(){ // Scroll Event $(window).on('scroll', function(){ var scrolled = $(window).scrollTop(); if (scrolled > 600) $('.go-top').addClass('active'); if (scrolled < 600) $('.go-top').removeClass('active'); }); // Click Event $('.go-top').on('click', function() { $("html, body").animate({ scrollTop: "0" }, 500); }); });