/** * Template Name: Mamba - v2.1.0 * Template URL: https://bootstrapmade.com/mamba-one-page-bootstrap-template-free/ * Author: BootstrapMade.com * License: https://bootstrapmade.com/license/ */ !(function($) { "use strict"; // Toggle .header-scrolled class to #header when page is scrolled $(window).scroll(function() { if ($(this).scrollTop() > 100) { $('#header').addClass('header-scrolled'); } else { $('#header').removeClass('header-scrolled'); } }); if ($(window).scrollTop() > 100) { $('#header').addClass('header-scrolled'); } // Stick the header at top on scroll $("#header").sticky({ topSpacing: 0, zIndex: '50' }); // Smooth scroll for the navigation menu and links with .scrollto classes $(document).on('click', '.nav-menu a, .mobile-nav a, .scrollto', function(e) { if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) { e.preventDefault(); var target = $(this.hash); if (target.length) { var scrollto = target.offset().top; var scrolled = 2; if ($('#header-sticky-wrapper').length) { scrollto -= $('#header-sticky-wrapper').outerHeight() - scrolled; } if ($(this).attr("href") == '#header') { scrollto = 0; } $('html, body').animate({ scrollTop: scrollto }, 1500, 'easeInOutExpo'); if ($(this).parents('.nav-menu, .mobile-nav').length) { $('.nav-menu .active, .mobile-nav .active').removeClass('active'); $(this).closest('li').addClass('active'); } if ($('body').hasClass('mobile-nav-active')) { $('body').removeClass('mobile-nav-active'); $('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close'); $('.mobile-nav-overly').fadeOut(); } return false; } } }); // Mobile Navigation if ($('.nav-menu').length) { var $mobile_nav = $('.nav-menu').clone().prop({ class: 'mobile-nav d-lg-none' }); $('body').append($mobile_nav); $('body').prepend(''); $('body').append('
'); $(document).on('click', '.mobile-nav-toggle', function(e) { $('body').toggleClass('mobile-nav-active'); $('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close'); $('.mobile-nav-overly').toggle(); }); $(document).on('click', '.mobile-nav .drop-down > a', function(e) { e.preventDefault(); $(this).next().slideToggle(300); $(this).parent().toggleClass('active'); }); $(document).click(function(e) { var container = $(".mobile-nav, .mobile-nav-toggle"); if (!container.is(e.target) && container.has(e.target).length === 0) { if ($('body').hasClass('mobile-nav-active')) { $('body').removeClass('mobile-nav-active'); $('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close'); $('.mobile-nav-overly').fadeOut(); } } }); } else if ($(".mobile-nav, .mobile-nav-toggle").length) { $(".mobile-nav, .mobile-nav-toggle").hide(); } // Navigation active state on scroll var nav_sections = $('section'); var main_nav = $('.nav-menu, #mobile-nav'); var main_nav_height = $('#header').outerHeight(); $(window).on('scroll', function() { var cur_pos = $(this).scrollTop() + 10; nav_sections.each(function() { var top = $(this).offset().top - main_nav_height, bottom = top + $(this).outerHeight(); if (cur_pos >= top && cur_pos <= bottom) { if (cur_pos <= bottom) { main_nav.find('li').removeClass('active'); } main_nav.find('a[href="#' + $(this).attr('id') + '"]').parent('li').addClass('active'); } }); }); // Intro carousel var heroCarousel = $("#heroCarousel"); var heroCarouselIndicators = $("#hero-carousel-indicators"); heroCarousel.find(".carousel-inner").children(".carousel-item").each(function(index) { (index === 0) ? heroCarouselIndicators.append("
  • "): heroCarouselIndicators.append("
  • "); }); heroCarousel.on('slid.bs.carousel', function(e) { $(this).find('h2').addClass('animated fadeInDown'); $(this).find('p').addClass('animated fadeInUp'); $(this).find('.btn-get-started').addClass('animated fadeInUp'); }); // Back to top button $(window).scroll(function() { if ($(this).scrollTop() > 100) { $('.back-to-top').fadeIn('slow'); } else { $('.back-to-top').fadeOut('slow'); } }); $('.back-to-top').click(function() { $('html, body').animate({ scrollTop: 0 }, 1500, 'easeInOutExpo'); return false; }); // Initiate the venobox plugin $(window).on('load', function() { $('.venobox').venobox(); }); // jQuery counterUp $('[data-toggle="counter-up"]').counterUp({ delay: 10, time: 1000 }); // Porfolio isotope and filter $(window).on('load', function() { var portfolioIsotope = $('.portfolio-container').isotope({ itemSelector: '.portfolio-item', layoutMode: 'fitRows' }); $('#portfolio-flters li').on('click', function() { $("#portfolio-flters li").removeClass('filter-active'); $(this).addClass('filter-active'); portfolioIsotope.isotope({ filter: $(this).data('filter') }); }); // Initiate venobox (lightbox feature used in portofilo) $(document).ready(function() { $('.venobox').venobox(); }); }); // Initi AOS AOS.init({ duration: 1000, easing: "ease-in-out-back" }); })(jQuery); function contactVarshaFineArt(e) { e.preventDefault(); var Namere = /[A-Za-z]{1}[A-Za-z]/; if (!Namere.test($("#name").val())) { alert ("Name can not be less than 2 characters. Please enter your full name."); return; } if ($("#email").val()=="") { alert ("Please enter your email id"); return; } var reeamil = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,6})?$/; if (!reeamil.test($("#email").val())) { alert ("Please enter valid email address."); return; } var name = $("#name").val(); var email = $("#email").val(); var desc = $("#message").val(); var data = { name : name, email : email, desc : desc }; $.ajax({ type: "POST", url : "https://r6yadtlmii.execute-api.us-east-1.amazonaws.com/production/varshafineart-contact-us", dataType: "json", crossDomain: "true", contentType: "application/json; charset=utf-8", data: JSON.stringify(data), success: function () { // clear form and show a success message $("#success-contact-alert").removeClass('d-none'); $("#success-contact-alert").fadeTo(2000, 500).slideUp(500, function(){ $("#success-contact-alert").slideUp(500); }); $("#name").val(""); $("#email").val(""); $("#message").val(""); }, error: function () { // show an error message $("#danger-contact-alert").removeClass('d-none'); $("#danger-contact-alert").fadeTo(2000, 500).slideUp(500, function(){ $("#danger-contact-alert").slideUp(500); }); }}); }