| Current Path : /home/ereika83/www/wp-content/themes/altitude-pro/js/ |
| Current File : /home/ereika83/www/wp-content/themes/altitude-pro/js/global.js |
/**
* This script adds the jquery effects to the Altitude Pro Theme.
*
* @package Altitude\JS
* @author StudioPress
* @license GPL-2.0+
*/
jQuery(function( $ ){
if( $( document ).scrollTop() > 0 ){
$( '.site-header' ).addClass( 'dark' );
}
// Add opacity class to site header.
$( document ).on('scroll', function(){
if ( $( document ).scrollTop() > 0 ){
$( '.site-header' ).addClass( 'dark' );
} else {
$( '.site-header' ).removeClass( 'dark' );
}
});
});