update
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
$(window).scroll(function() {
|
||||
if ($(this).scrollTop()>100){
|
||||
$('.page-header').fadeOut();
|
||||
$( ".page-body-wrapper" ).addClass( "scorlled" );
|
||||
}
|
||||
else
|
||||
{
|
||||
$('.page-header').fadeIn();
|
||||
$( ".page-body-wrapper" ).removeClass( "scorlled" );
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user