(function ($) { "use strict"; var $window = $(window); var $body = $('body'); /* Preloader Effect */ $window.on('load', function(){ $(".preloader").fadeOut(600); }); /* Sticky Header */ if($('.active-sticky-header').length){ $window.on('resize', function(){ setHeaderHeight(); }); function setHeaderHeight(){ $("header.main-header").css("height", $('header .header-sticky').outerHeight()); } $window.on("scroll", function() { var fromTop = $(window).scrollTop(); setHeaderHeight(); var headerHeight = $('header .header-sticky').outerHeight() $("header .header-sticky").toggleClass("hide", (fromTop > headerHeight + 100)); $("header .header-sticky").toggleClass("active", (fromTop > 600)); }); } /* Slick Menu JS */ $('#menu').slicknav({ label : '', prependTo : '.responsive-menu' }); if($("a[href='#top']").length){ $(document).on("click", "a[href='#top']", function() { $("html, body").animate({ scrollTop: 0 }, "slow"); return false; }); } /* Hero Slider Layout JS */ const hero_slider_layout = new Swiper('.hero-slider-layout .swiper', { slidesPerView : 1, speed: 1000, spaceBetween: 0, loop: true, autoplay: { delay: 4000, }, pagination: { el: '.hero-pagination', clickable: true, }, }); /* Our Company Slider JS */ if ($('.our-company-slider').length) { const our_company_slider = new Swiper('.our-company-slider .swiper', { slidesPerView : 2, speed: 2000, spaceBetween: 40, loop: true, autoplay: { delay: 3000, }, breakpoints: { 768:{ slidesPerView: 4, }, 991:{ slidesPerView: 5, } } }); } /* testimonial Slider JS */ if ($('.testimonial-slider').length) { const testimonial_slider = new Swiper('.testimonial-slider .swiper', { slidesPerView : 1, speed: 1000, spaceBetween: 30, loop: true, centeredSlides: true, autoplay: { delay: 5000, }, pagination: { el: '.testimonial-pagination', type: "fraction", clickable: true, }, navigation: { nextEl: '.testimonial-button-next', prevEl: '.testimonial-button-prev', }, breakpoints: { 768:{ slidesPerView: 1, }, 991:{ slidesPerView: 1, } } }); } /* Project Single Slider JS Start */ if ($('.project-single-slider').length) { const testimonial_slider = new Swiper('.project-single-slider .swiper', { slidesPerView : 1, speed: 1000, spaceBetween: 30, loop: true, autoplay: { delay: 5000, }, pagination: { el: '.project-pagination', clickable: true, }, breakpoints: { 768:{ slidesPerView: 1, }, 991:{ slidesPerView: 1, } } }); } /* Skill Bar */ if ($('.skills-progress-bar').length) { $('.skills-progress-bar').waypoint(function() { $('.skillbar').each(function() { $(this).find('.count-bar').animate({ width:$(this).attr('data-percent') },2000); }); },{ offset: '50%' }); } /* Youtube Background Video JS */ if ($('#herovideo').length) { var myPlayer = $("#herovideo").YTPlayer(); } /* Init Counter */ if ($('.counter').length) { $('.counter').counterUp({ delay: 6, time: 3000 }); } /* Image Reveal Animation */ if ($('.reveal').length) { gsap.registerPlugin(ScrollTrigger); let revealContainers = document.querySelectorAll(".reveal"); revealContainers.forEach((container) => { let image = container.querySelector("img"); let tl = gsap.timeline({ scrollTrigger: { trigger: container, toggleActions: "play none none none" } }); tl.set(container, { autoAlpha: 1 }); tl.from(container, 1, { xPercent: -100, ease: Power2.out }); tl.from(image, 1, { xPercent: 100, scale: 1, delay: -1, ease: Power2.out }); }); } /* Parallaxie js */ var $parallaxie = $('.parallaxie'); if($parallaxie.length && ($window.width() > 991)) { if ($window.width() > 768) { $parallaxie.parallaxie({ speed: 0.55, offset: 0, }); } } /* Zoom Gallery screenshot */ $('.gallery-items').magnificPopup({ delegate: 'a', type: 'image', closeOnContentClick: false, closeBtnInside: false, mainClass: 'mfp-with-zoom', image: { verticalFit: true, }, gallery: { enabled: true }, zoom: { enabled: true, duration: 300, // don't foget to change the duration also in CSS opener: function(element) { return element.find('img'); } } }); /* Contact form validation */ var $contactform = $("#contactForm"); $contactform.validator({focus: false}).on("submit", function (event) { if (!event.isDefaultPrevented()) { event.preventDefault(); submitForm(); } }); function submitForm(){ /* Ajax call to submit form */ $.ajax({ type: "POST", url: "form-process.php", data: $contactform.serialize(), success : function(text){ if (text === "success"){ formSuccess(); } else { submitMSG(false,text); } } }); } function formSuccess(){ $contactform[0].reset(); submitMSG(true, "Message Sent Successfully!") } function submitMSG(valid, msg){ if(valid){ var msgClasses = "h4 text-success"; } else { var msgClasses = "h4 text-danger"; } $("#msgSubmit").removeClass().addClass(msgClasses).text(msg); } /* Contact form validation end */ /* Animated Wow Js */ new WOW().init(); /* Popup Video */ if ($('.popup-video').length) { $('.popup-video').magnificPopup({ type: 'iframe', mainClass: 'mfp-fade', removalDelay: 160, preloader: false, fixedContentPos: true }); } /* How It Work Active Start */ var $service_item_list = $('.service-item-list'); if ($service_item_list.length) { var $service_items = $service_item_list.find('.service-item'); if ($service_items.length) { $service_items.on({ mouseenter: function () { if (!$(this).hasClass('active')) { $service_items.removeClass('active'); $(this).addClass('active'); } }, mouseleave: function () { // Optional: Add logic for mouse leave if needed } }); } } /* How It Work Active End */ /* Our Pricing Tab JS Start */ if ($('.our-pricing-box').length) { $('#planToggle').change(function () { if ($(this).is(':checked')) { $('#monthly').addClass('d-none'); $('#annually').removeClass('d-none'); } else { $('#annually').addClass('d-none'); $('#monthly').removeClass('d-none'); } }); } /* Our Pricing Tab JS End */ })(jQuery);