Monkey Albino

Linux altar53.supremepanel53.com 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64
/ home/ bdapparelinfo/ hi-techplasticltd.com/ js/

//home/bdapparelinfo/hi-techplasticltd.com/js/custom.js

// JavaScript Document
jQuery(document).ready(function($) {
	wow = new WOW(
	{
	  boxClass:     'wow',      // default
	  animateClass: 'animated', // default 
	  offset:       0          // default
	})
	wow.init();
	$(window).scroll(function() {
		if ($(this).scrollTop() > 35){  
			$('.main-header').addClass("sticky");
			$('.inner-header').css("background","transparent");
		}
		else{
			$('.main-header').removeClass("sticky");
			$('.inner-header').css("background","rgba(0, 0, 0, 0.75)");
		}
	});
});