(function($) { "use strict"; //Hide Loading Box (Preloader) function handlePreloader() { if($('.preloader').length){ $('.preloader').delay(200).fadeOut(500); } } //Update Header Style and Scroll to Top function headerStyle() { if($('.main-header').length){ var windowpos = $(window).scrollTop(); var siteHeader = $('.main-header'); var scrollLink = $('.scroll-to-top'); if (windowpos >= 250) { siteHeader.addClass('fixed-header'); scrollLink.fadeIn(300); } else { siteHeader.removeClass('fixed-header'); scrollLink.fadeOut(300); } } } headerStyle(); //===Search box === function searchbox() { //Search Box Toggle if($('.seach-toggle').length){ //Dropdown Button $('.seach-toggle').click(function() { $(this).toggleClass('active'); $(this).next('.search-box').toggleClass('now-visible'); }); } } //Submenu Dropdown Toggle if($('.main-header .navigation li.dropdown ul').length){ $('.main-header .navigation li.dropdown').append(''); //Dropdown Button $('.main-header .navigation li.dropdown .dropdown-btn').on('click', function() { $(this).prev('ul').slideToggle(500); }); //Disable dropdown parent link $('.navigation li.dropdown > a').on('click', function(e) { e.preventDefault(); }); } //Accordion Box if($('.accordion-box').length){ $(".accordion-box").on('click', '.acc-btn', function() { var outerBox = $(this).parents('.accordion-box'); var target = $(this).parents('.accordion'); if($(this).hasClass('active')!==true){ $(outerBox).find('.accordion .acc-btn').removeClass('active'); } if ($(this).next('.acc-content').is(':visible')){ return false; }else{ $(this).addClass('active'); $(outerBox).children('.accordion').removeClass('active-block'); $(outerBox).find('.accordion').children('.acc-content').slideUp(300); target.addClass('active-block'); $(this).next('.acc-content').slideDown(300); } }); } //===Progress Bar=== function progressBarConfig () { var progressBar = $('.progress'); if(progressBar.length) { progressBar.each(function () { var Self = $(this); Self.appear(function () { var progressValue = Self.data('value'); Self.find('.progress-bar').animate({ width:progressValue+'%' }, 100); Self.find('span.value').countTo({ from: 0, to: progressValue, speed: 100 }); }); }) } } if($('.project-tab').length){ $('.project-tab .product-tab-btns .p-tab-btn').on('click', function(e) { e.preventDefault(); var target = $($(this).attr('data-tab')); if ($(target).hasClass('actve-tab')){ return false; }else{ $('.project-tab .product-tab-btns .p-tab-btn').removeClass('active-btn'); $(this).addClass('active-btn'); $('.project-tab .p-tabs-content .p-tab').removeClass('active-tab'); $(target).addClass('active-tab'); } }); } //Fact Counter + Text Count function factCounter() { if($('.fact-counter').length){ $('.fact-counter .counter-column.animated').each(function() { var $t = $(this), n = $t.find(".count-text").attr("data-stop"), r = parseInt($t.find(".count-text").attr("data-speed"), 10); if (!$t.hasClass("counted")) { $t.addClass("counted"); $({ countNum: $t.find(".count-text").text() }).animate({ countNum: n }, { duration: r, easing: "linear", step: function() { $t.find(".count-text").text(Math.floor(this.countNum)); }, complete: function() { $t.find(".count-text").text(this.countNum); } }); } }); } } if ($('.img-popup').length) { var groups = {}; $('.img-popup').each(function() { var id = parseInt($(this).attr('data-group'), 10); if (!groups[id]) { groups[id] = []; } groups[id].push(this); }); $.each(groups, function() { $(this).magnificPopup({ type: 'image', closeOnContentClick: true, closeBtnInside: false, gallery: { enabled: true } }); }); } //Tabs Box if($('.tabs-box').length){ $('.tabs-box .tab-buttons .tab-btn').on('click', function(e) { e.preventDefault(); var target = $($(this).attr('data-tab')); if ($(target).is(':visible')){ return false; }else{ target.parents('.tabs-box').find('.tab-buttons').find('.tab-btn').removeClass('active-btn'); $(this).addClass('active-btn'); target.parents('.tabs-box').find('.tabs-content').find('.tab').fadeOut(0); target.parents('.tabs-box').find('.tabs-content').find('.tab').removeClass('active-tab'); $(target).fadeIn(300); $(target).addClass('active-tab'); } }); } //Product Tabs if($('.prod-tabs .tab-btn').length){ $('.prod-tabs .tab-btn').on('click', function(e) { e.preventDefault(); var target = $($(this).attr('href')); $('.prod-tabs .tab-btn').removeClass('active-btn'); $(this).addClass('active-btn'); $('.prod-tabs .tab').fadeOut(0); $('.prod-tabs .tab').removeClass('active-tab-box'); $(target).fadeIn(500); $(target).addClass('active-tab-box'); }); } //Single Item Carousel if ($('.single-item-carousel').length) { $('.single-item-carousel').owlCarousel({ loop:true, margin:0, nav:true, smartSpeed: 1000, autoplay: 5000, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 600:{ items:1 }, 1200:{ items:1 } } }); } //two Item Carousel if ($('.two-item-carousel').length) { $('.two-item-carousel').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 1000, autoplay: 5000, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 767:{ items:2 }, 1200:{ items:2 } } }); } //Single Item Carousel if ($('.three-item-carousel').length) { $('.three-item-carousel').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 1000, autoplay: 1000, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 767:{ items:2 }, 1024:{ items:2 }, 1200:{ items:3 } } }); } //Single Item Carousel if ($('.four-item-carousel').length) { $('.four-item-carousel').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 1000, autoplay: 5000, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 480:{ items:1 } , 767:{ items:2 }, 992:{ items:3 }, 1200:{ items:4 } } }); } //Single Item Carousel if ($('.five-item-carousel').length) { $('.five-item-carousel').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 1000, autoplay: 5000, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 480:{ items:2 } , 767:{ items:3 }, 992:{ items:4 }, 1200:{ items:5 } } }); } //Gallery With Filters if($('.filter-list').length){ $('.filter-list').mixItUp({}); } //Masonary function enableMasonry() { if($('.masonry-items-container').length){ var winDow = $(window); // Needed variables var $container=$('.masonry-items-container'); $container.isotope({ itemSelector: '.masonry-item', masonry: { columnWidth : 0 }, animationOptions:{ duration:500, easing:'linear' } }); winDow.bind('resize', function(){ $container.isotope({ itemSelector: '.masonry-item', animationOptions: { duration: 500, easing : 'linear', queue : false } }); }); } } enableMasonry(); // isotope style if ($('.isotope_block').length) { $('.isotope_block').isotope({ layoutMode:'masonry' }); } //LightBox / Fancybox if($('.lightbox-image').length) { $('.lightbox-image').fancybox({ openEffect : 'fade', closeEffect : 'fade', helpers : { media : {} } }); } //Contact Form Validation if($('#contact-form').length){ $('#contact-form').validate({ rules: { fname: { required: true }, lname: { required: true }, email: { required: true, email: true }, message: { required: true } } }); } //Jquery Spinner / Quantity Spinner if($('.quantity-spinner').length){ $("input.quantity-spinner").TouchSpin({ verticalbuttons: true }); } // Scroll to a Specific Div if($('.scroll-to-target').length){ $(".scroll-to-target").on('click', function() { var target = $(this).attr('data-target'); // animate $('html, body').animate({ scrollTop: $(target).offset().top }, 1000); }); } // Elements Animation if($('.wow').length){ var wow = new WOW( { boxClass: 'wow', // animated element css class (default is wow) animateClass: 'animated', // animation css class (default is animated) offset: 0, // distance to the element when triggering the animation (default is 0) mobile: false, // trigger animations on mobile devices (default is true) live: true // act on asynchronously loaded content (default is true) } ); wow.init(); } // Dom Ready Function jQuery(document).ready(function () { (function ($) { progressBarConfig (); })(jQuery); }); /* ========================================================================== When document is Scrollig, do ========================================================================== */ $(window).on('scroll', function() { headerStyle(); factCounter(); }); /* ========================================================================== When document is loaded, do ========================================================================== */ $(window).on('load', function() { handlePreloader(); searchbox(); }); })(window.jQuery);