function education_insight_gb_Menu_open() { jQuery(".mobile_menu_nav").addClass('show'); } function education_insight_gb_Menu_close() { jQuery(".mobile_menu_nav").removeClass('show'); } jQuery(function($){ $('.gb_toggle').click(function () { education_insight_Keyboard_loop($('.mobile_menu_nav')); }); }); jQuery(window).scroll(function(){ if (jQuery(this).scrollTop() > 50) { jQuery('.scrollup').addClass('is-active'); } else { jQuery('.scrollup').removeClass('is-active'); } }); jQuery( document ).ready(function() { jQuery('#education-insight-scroll-to-top').click(function (argument) { jQuery("html, body").animate({ scrollTop: 0 }, 600); }) }) // sticky header jQuery(window).scroll(function(){ if (jQuery(this).scrollTop() > 120) { jQuery('.fixed_header').addClass('fixed'); } else { jQuery('.fixed_header').removeClass('fixed'); } }); /* Custom Cursor **-----------------------------------------------------*/ // Add this in custom-cursor.js jQuery(document).ready(function($) { var cursor = $(".custom-cursor"); var follower = $(".custom-cursor-follower"); var offsetX = 15; // Set your desired horizontal offset var offsetY = 15; // Set your desired vertical offset $(document).mousemove(function(e) { cursor.css({ top: e.clientY - offsetY + "px", left: e.clientX - offsetX + "px" }); follower.css({ top: e.clientY + "px", left: e.clientX + "px" }); }); $("a, button").hover( function() { cursor.addClass("active"); follower.addClass("active"); }, function() { cursor.removeClass("active"); follower.removeClass("active"); } ); }); /*preloader*/ jQuery(document).ready(function($) { // Function to hide preloader function hidePreloader() { $("#preloader ").delay(2000).fadeOut("slow"); } // Check if all resources have been loaded if (document.readyState === "complete") { hidePreloader(); } else { window.onload = hidePreloader; } });