| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /**
- * Template Name: Arsha - v2.0.0
- * Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
- * Author: BootstrapMade.com
- * License: https://bootstrapmade.com/license/
- */
- !(function($) {
- "use strict";
- // Preloader
- $(window).on('load', function() {
- if ($('#preloader').length) {
- $('#preloader').delay(100).fadeOut('slow', function() {
- $(this).remove();
- });
- }
- });
- // 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) {
- var target = $(this.hash);
- if (target.length) {
- e.preventDefault();
- var scrollto = target.offset().top;
- var scrolled = 20;
- if ($('#header').length) {
- scrollto -= $('#header').outerHeight()
- if (!$('#header').hasClass('header-scrolled')) {
- scrollto += 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('<button type="button" class="mobile-nav-toggle d-lg-none"><i class="icofont-navigation-menu"></i></button>');
- $('body').append('<div class="mobile-nav-overly"></div>');
- $(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');
- $(window).on('scroll', function() {
- var cur_pos = $(this).scrollTop() + 90;
- nav_sections.each(function() {
- var top = $(this).offset().top,
- 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');
- }
- if (cur_pos < 300) {
- $(".nav-menu ul:first li:first").addClass('active');
- }
- });
- });
- // 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');
- }
- // 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;
- });
- })(jQuery);
|