Mini Shell

Direktori : /home/funerariamayer/www/js/
Upload File :
Current File : /home/funerariamayer/www/js/sticky-custom.js

/* ---------------------------------------------------------------------- */
/*		Sticky Menu
/* ---------------------------------------------------------------------- */

jQuery(document).ready(function(){ 
	jQuery(function() {
	    var header = jQuery('#header.horizontal-w');
	    var navHomeY = header.offset().top;
	    var isFixed = false;
	    var $w = jQuery(window);
	    $w.scroll(function(e) {
	        var scrollTop = $w.scrollTop();
	        var shouldBeFixed = scrollTop > 120;
	        if (shouldBeFixed && !isFixed) {
	            header.addClass('sticky');
	            isFixed = true;
	           
	        }
	        else if (!shouldBeFixed && isFixed)
	        {
	            header.removeClass("sticky");
	            isFixed = false;
	        }
	        e.preventDefault();
	    });
	});
});

Zerion Mini Shell 1.0