(function($) { "use strict"; function responsive_jquery_function() { if ($("section").hasClass("cit_sec")) { /* if ($(window).width() < 768) {*/ if ($(window).width() > 100) { var new_test_block = $('.new_test_block').height(); console.log('new_test_block: '+new_test_block); var new_test_block_top = $('.new_test_block').css('padding-top'); console.log('new_test_block_top: '+new_test_block_top); var new_test_block_bottom = $('.new_test_block').css('padding-bottom'); console.log('new_test_block_bottom: '+new_test_block_bottom); var new_test_block_top_array = new_test_block_top.split("px"); new_test_block_top = new_test_block_top_array[0]; var new_test_block_bottom_array = new_test_block_bottom.split("px"); new_test_block_top = new_test_block_bottom_array[0]; var cit_sec_new_height = parseInt(new_test_block) + parseInt(new_test_block_top) + parseInt(new_test_block_bottom); console.log('cit_sec_new_height: '+cit_sec_new_height); $('.cit_sec').css('height', (cit_sec_new_height)); } } /* city page lab address section start */ if ($(window).width() < 576) { if ($('#lab_add_wrap_id').hasClass("col-xl-5")) { $('#lab_add_wrap_id').removeClass("col-xl-5 col-lg-5 col-md-12 col-sm-12 col-8"); } if ($('#colle_img_wrap_id ').hasClass("col-xl-7")) { $('#colle_img_wrap_id').removeClass("col-xl-7 col-lg-7 col-md-12 col-sm-12 col-4 p-0"); } } else { if (!$('#lab_add_wrap_id').hasClass("col-xl-5")) { $('#lab_add_wrap_id').addClass("col-xl-5 col-lg-5 col-md-12 col-sm-12 col-8"); } if (!$('#colle_img_wrap_id ').hasClass("col-xl-7")) { $('#colle_img_wrap_id').addClass("col-xl-7 col-lg-7 col-md-12 col-sm-12 col-4 p-0"); } } /* city page lab address section end */ if ($("section").hasClass("test_details_page_section")) { //console.log('window.location.pathname: '+window.location.pathname); var img_height = $('#test_detail_img_id').height(); var page_title_padding_top = $('.page-title').css('padding-top'); var padding_top_array = page_title_padding_top.split("px"); page_title_padding_top = padding_top_array[0]; console.log('page_title_padding_top: '+page_title_padding_top); var new_margin_top = ''; console.log('img_height: '+img_height); if ($(window).width() < 992) { if(img_height > page_title_padding_top) { new_margin_top = img_height-page_title_padding_top+20; } else { new_margin_top = 0; } console.log('new_margin_top: '+new_margin_top); $('.test-page-container').css('margin-top', new_margin_top); } else { console.log('More than 992'); var content_box_height = $('.test_details_page_section .content-box').height(); var content_box_padding_top = $('.test_details_page_section .content-box').css('padding-top'); var content_box_padding_top_array = content_box_padding_top.split("px"); content_box_padding_top = content_box_padding_top_array[0]; var content_box_padding_bottom = $('.test_details_page_section .content-box').css('padding-bottom'); var content_box_padding_bottom_array = content_box_padding_bottom.split("px"); content_box_padding_bottom = content_box_padding_bottom_array[0]; console.log('content_box_height: '+content_box_height); if(img_height < page_title_padding_top) { new_margin_top = img_height-(content_box_height+content_box_padding_top+content_box_padding_bottom); $('.page-title').css('padding-top', img_height); } else { new_margin_top = (img_height-page_title_padding_top)-content_box_height-content_box_padding_top-content_box_padding_bottom; } $('#content-box-id').css('margin-top', new_margin_top); $('.test-page-container').css('margin-top', '0'); } } // if(302 < img_height) // { // //$('.test-page-container').css('margin-top', img_height+20); // $('.page-title').css('padding-top', (img_height+20)+'px !important'); // } // else // { // } // console.log('img_height: '); } $(window).on('load', responsive_jquery_function); $(window).on('resize', responsive_jquery_function ); //Update Header Style and Scroll to Top function headerStyle() { if($('.main-header').length){ var windowpos = $(window).scrollTop(); var siteHeader = $('.main-header'); var scrollLink = $('.scroll-top'); if (windowpos >= 110) { siteHeader.addClass('fixed-header'); scrollLink.addClass('open'); } else { siteHeader.removeClass('fixed-header'); scrollLink.removeClass('open'); } } } headerStyle(); //Submenu Dropdown Toggle if($('.main-header li.dropdown ul').length){ $('.main-header .navigation li.dropdown').append(''); } //Mobile Nav Hide Show if($('.mobile-menu').length){ $('.mobile-menu .menu-box').mCustomScrollbar(); var mobileMenuContent = $('.main-header .menu-area .main-menu').html(); $('.mobile-menu .menu-box .menu-outer').append(mobileMenuContent); $('.sticky-header .main-menu').append(mobileMenuContent); //Dropdown Button $('.mobile-menu li.dropdown .dropdown-btn').on('click', function() { $(this).toggleClass('open'); $(this).prev('ul').slideToggle(500); }); //Dropdown Button $('.mobile-menu li.dropdown .dropdown-btn').on('click', function() { $(this).prev('.megamenu').slideToggle(900); }); //Menu Toggle Btn $('.mobile-nav-toggler').on('click', function() { $('body').addClass('mobile-menu-visible'); }); //Menu Toggle Btn $('.mobile-menu .menu-backdrop,.mobile-menu .close-btn').on('click', function() { $('body').removeClass('mobile-menu-visible'); }); } // 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({ mobile: false }); wow.init(); } //Contact Form Validation if($('#contact-form').length){ $('#contact-form').validate({ rules: { username: { required: true }, email: { required: true, email: true }, phone: { required: true }, subject: { required: true }, message: { required: true } } }); } //Fact Counter + Text Count if($('.count-box').length){ $('.count-box').appear(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); } }); } },{accY: 0}); } //LightBox / Fancybox if($('.lightbox-image').length) { $('.lightbox-image').fancybox({ openEffect : 'fade', closeEffect : 'fade', helpers : { media : {} } }); } //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'); } }); } //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); } }); } // banner-carousel if ($('.banner-carousel').length) { $('.banner-carousel').owlCarousel({ loop:true, margin:0, nav:true, animateOut: 'fadeOut', animateIn: 'fadeIn', active: true, smartSpeed: 1000, autoplay: 6000, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 600:{ items:1 }, 800:{ items:1 }, 1024:{ items:1 } } }); } function onHoverthreeDmovement() { var tiltBlock = $('.js-tilt'); if(tiltBlock.length) { $('.js-tilt').tilt({ maxTilt: 20, perspective:700, glare: true, maxGlare: 0 }) } } //Add One Page nav if($('.scroll-nav').length) { $('.scroll-nav').onePageNav(); } // color switcher function swithcerMenu () { if ($('.switch_menu').length) { $('.switch_btn button').on('click', function(){ $('.switch_menu').toggle(500) }); $('#styleOptions').styleSwitcher({ hasPreview: true, fullPath: 'assets/css/color/', cookie: { expires: 30, isManagingLoad: true } }); }; } // body-layout function bodylayout() { if ($('.boxed_switch_menu').length) { $('.body_switch_btn button').on('click', function() { $('.body_switcher').toggleClass('switcher-show') }); $("#myonoffswitch").on('click', function() { $(".fixed").toggleClass("static"); }); $("#boxed").on('click', function() { $(".main_page").addClass("active_boxlayout"); $('body').addClass('bg') }); $("#full_width").on('click', function() { $(".main_page").removeClass("active_boxlayout"); $('body').removeClass('bg') }); }; } //Progress Bar if ($('.count-bar').length) { $('.count-bar').appear(function(){ var el = $(this); var percent = el.data('percent'); $(el).css('width',percent).addClass('counted'); },{accY: -50}); } //two-column-carousel if ($('.testimonial-carousel').length) { $('.testimonial-carousel').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 3000, autoplay: 4000, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 480:{ items:1 }, 600:{ items:1 }, 800:{ items:2 }, 1024:{ items:2 } } }); } // clients-carousel if ($('.clients-carousel').length) { $('.clients-carousel').owlCarousel({ loop:true, margin:30, nav:false, smartSpeed: 3000, autoplay: true, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 480:{ items:2 }, 600:{ items:3 }, 800:{ items:4 }, 1200:{ items:5 } } }); } // clients-carousel-2 if ($('.clients-carousel-2').length) { $('.clients-carousel-2').owlCarousel({ loop:true, margin:30, nav:false, smartSpeed: 3000, autoplay: true, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 480:{ items:2 }, 600:{ items:3 }, 800:{ items:3 }, 1200:{ items:3 } } }); } //testimonial-carousel-2 if ($('.testimonial-carousel-2').length) { $('.testimonial-carousel-2').owlCarousel({ loop:true, margin:10, nav:true, smartSpeed: 1000, autoplay: 500, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 480:{ items:1 }, 600:{ items:1 }, 800:{ items:1 }, 1024:{ items:1 } } }); } //three-item-carousel if ($('.three-item-carousel').length) { $('.three-item-carousel').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 1000, autoplay: 500, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 480:{ items:1 }, 600:{ items:2 }, 800:{ items:2 }, 1024:{ items:2 } } }); } //three-item-carousel function pack_item_carousel_fn(){ // console.log('triggered'); if ($('.pack-item-carousel').length) { $('.pack-item-carousel').owlCarousel({ autoWidth:true, loop:false, //margin:80, nav:false, smartSpeed:3000, autoplay: false, // navText: [ '', '' ], responsive:{ 0:{ items:1 }, 480:{ items:1 }, 600:{ items:1 }, 800:{ items:1 }, 1024:{ items:2 } } }); } } pack_item_carousel_fn(); // Four Item Carousel if ($('.four-item-carousel').length) { $('.four-item-carousel').owlCarousel({ loop:true, margin:30, nav:true, autoHeight: true, smartSpeed: 500, autoplay: 5000, navText: [ '', '' ], responsive:{ 0:{ items:1 }, 600:{ items:1 }, 800:{ items:2 }, 1024:{ items:2 }, 1200:{ items:2 } } }); } //Search Popup if($('#search-popup').length){ //Show Popup $('.search-toggler').on('click', function() { $('#search-popup').addClass('popup-visible'); }); $(document).keydown(function(e){ if(e.keyCode === 27) { $('#search-popup').removeClass('popup-visible'); } }); //Hide Popup $('.close-search,.search-popup .overlay-layer').on('click', function() { $('#search-popup').removeClass('popup-visible'); }); } /* ========================================================================= When document is Scrollig, do ========================================================================== */ jQuery(document).on('ready', function () { (function ($) { // add your functions onHoverthreeDmovement(); swithcerMenu(); bodylayout(); })(jQuery); }); /* ========================================================================== When document is Scrollig, do ========================================================================== */ $(window).on('scroll', function() { headerStyle(); }); /* ========================================================================== When document is loaded, do ========================================================================== */ $(window).on('load', function() { }); })(window.jQuery); (function ($) { 'use strict'; var $window = $(window); // :: 1.0 Preloader Active Code $window.on('load', function () { $('#preloader').fadeOut('slow', function () { $(this).remove(); }); }); })(jQuery);