(function($) { "use strict"; /* |-------------------------------------------------------------------------- | Template Name: Axista | Author: AwesomeThemez | Developer: Tamjid Bin Murtoza | Version: 1.0.0 |-------------------------------------------------------------------------- |-------------------------------------------------------------------------- | TABLE OF CONTENTS: |-------------------------------------------------------------------------- | | 1. Scripts initialization | 2. Preloader | 3. Primary Menu | 4. Scroll Function | 5. Section Active and Scrolling Animation | 6. Scroll Up | 7. Portfolio | 8. Owl Carousel | 9. Pricing Table | 9. Ajax Contact Form And Appointment | */ /*-------------------------------------------------------------- 1. Scripts initialization --------------------------------------------------------------*/ $(window).on('load', function() { $(window).trigger("scroll"); $(window).trigger("resize"); preloaderSetup(); }); $(document).ready(function() { $(window).trigger("resize"); primaryMenuSetup(); mobileMenu(); scrollAnimation(); sectionActive(); scrollUp(); owlCarouselSetup(); tab(); contactForm(); new WOW().init(); // Custom Parallax Footer var footerHeight = ($('.at-site-footer').height()) + 'px'; var test = $('.at-site-footer').height(); $('.at-cotent').css("margin-bottom", footerHeight); // Data images //---------------------------------- $('.at-bg').each(function() { var src = $(this).attr('data-src'); $(this).css({ 'background-image': 'url(' + src + ')' }); }); }); $(window).on('resize', function() { mobileMenu(); portfolioMsSetup(); }); $(window).on('scroll', function() { scrollFunction(); }); /*-------------------------------------------------------------- 2. Preloader --------------------------------------------------------------*/ function preloaderSetup() { $(".at-preloader-dots").fadeOut(); $("#at-preloader").delay(150).fadeOut("slow"); } /*-------------------------------------------------------------- 3. Primary Menu --------------------------------------------------------------*/ function primaryMenuSetup() { //$(".primary-nav-list").before(""); $(".m-menu-btn").on('click', function() { $(this).toggleClass("m-menu-btn-ext"); $(this).siblings('.primary-nav-list').slideToggle("slow"); }); $(".menu-item-has-children > ul").before(""); $('.m-dropdown').on('click', function() { $(this).siblings('ul').slideToggle("slow"); $(this).toggleClass("fa-plus fa-minus") }); } function mobileMenu() { if ($(window).width() <= 991) { $('.primary-nav').addClass('m-menu').removeClass('primary-nav'); } else { $('.m-menu').addClass('primary-nav').removeClass('m-menu'); } } /*-------------------------------------------------------------- 4. Scroll Function --------------------------------------------------------------*/ function scrollFunction() { var scroll = $(window).scrollTop(); if (scroll >= 10) { $(".site-header").addClass("small-height"); } else { $(".site-header").removeClass("small-height"); } // For Scroll Up if (scroll >= 350) { $(".scrollup").addClass("scrollup-show"); } else { $(".scrollup").removeClass("scrollup-show"); } } /*-------------------------------------------------------------- 5. Section Active and Scrolling Animation --------------------------------------------------------------*/ function scrollAnimation() { $('.site-header a').bind('click', function(event) { var $anchor = $(this); $('html, body').stop().animate({ scrollTop: ($($anchor.attr('href')).offset().top - 15) }, 1250, 'easeInOutExpo'); event.preventDefault(); }); } function sectionActive() { $('body').scrollspy({ target: '.site-header', offset: 70 }); } /*-------------------------------------------------------------- 6. Scroll Up --------------------------------------------------------------*/ function scrollUp() { $("body").append(""); $('.scrollup').on('click', function(e) { e.preventDefault(); $('html,body').animate({ scrollTop: 0 }, 1000); }); } /*-------------------------------------------------------------- 7. Portfolio --------------------------------------------------------------*/ function portfolioMsSetup() { $('.at-portfolio').isotope({ itemSelector: '.at-portfolio-item', transitionDuration: '0.60s', percentPosition: true, masonry: { columnWidth: '.at-grid-sizer' } }); /* Active Class of Portfolio*/ $('.at-portfolio-filter ul li').on('click', function(event) { $(this).siblings('.active').removeClass('active'); $(this).addClass('active'); event.preventDefault(); }); /*=== Portfolio filtering ===*/ $('.at-portfolio-filter ul').on('click', 'a', function() { var filterElement = $(this).attr('data-filter'); $(this).parents(".at-portfolio-filter").next().isotope({ filter: filterElement }); }); } /*-------------------------------------------------------------- 8. Owl Carousel --------------------------------------------------------------*/ function owlCarouselSetup() { /* Owl Carousel For Testimonial */ $('.at-testimonials').owlCarousel({ items: 1, animateOut: 'fadeOut', animateIn: 'fadeIn', loop: true, autoplay: true, autoplayTimeout: 6000, smartSpeed: 1000, nav: false, dots: true }); // Work Details Carousel $('.at-wrok-carusor').owlCarousel({ items: 1, loop: true, nav: true, autoplayTimeout: 6000, smartSpeed: 1000, navText: ['', ''], autoplay: true }) // Work Details Carousel $('.at-home-slider').owlCarousel({ items: 1, loop: true, nav: true, autoplayTimeout: 7000, smartSpeed: 800, navText: ['', ''], autoplay: true }) } /*-------------------------------------------------------------- 9. Pricing Table --------------------------------------------------------------*/ function tab() { $('.tabs.animated-fade .tab-links a').on('click', function(e) { var currentAttrValue = jQuery(this).attr('href'); $('.tabs ' + currentAttrValue).fadeIn(400).siblings().hide(); $(this).parent('li').addClass('active').siblings().removeClass('active'); e.preventDefault(); }); } /*-------------------------------------------------------------- 10. Ajax Contact Form And Appointment --------------------------------------------------------------*/ // Contact Form function contactForm() { $('#at-alert').hide(); $('#contact-form #submit').on('click', function() { var name = $('#name').val(); var address = $('#address').val(); var phone = $('#phone').val(); var email = $('#email').val(); var msg = $('#msg').val(); var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/; if (!regex.test(email)) { $('#at-alert').fadeIn().html('
Warning! Please Enter Valid Email.
'); return false; } name = $.trim(name); address = $.trim(address); phone = $.trim(phone); email = $.trim(email); msg = $.trim(msg); if (name != '' && email != '' && msg != '') { var values = "name=" + name + "&address=" + address + "&phone=" + phone + "&email=" + email + "&msg=" + msg; $.ajax({ type: "POST", url: "assets/php/mail.php", data: values, success: function() { $('#name').val(''); $('#address').val(''); $('#phone').val(''); $('#email').val(''); $('#msg').val(''); $('#at-alert').fadeIn().html('
Success! Email has been sent successfully.
'); setTimeout(function() { $('#at-alert').fadeOut('slow'); }, 4000); } }); } else { $('#at-alert').fadeIn().html('
Warning! All fields are required.
'); } return false; }); } })(jQuery); // End of use strict