Skip to content

Instantly share code, notes, and snippets.

@dmacompton
Last active October 23, 2015 07:14
Show Gist options
  • Save dmacompton/8eb772f183333f0423ea to your computer and use it in GitHub Desktop.
Save dmacompton/8eb772f183333f0423ea to your computer and use it in GitHub Desktop.
Scroll animation jquery
$(window).scroll(function(){
var topScr = $(window).scrollTop();
// фиксация куска хедера и скрытие лишней части
if( topScr > 65 ){ $('#header').addClass('fix'); $('#body').css({'padding-top':'140px'});
}else{ $('#header').removeClass('fix'); $('#body').css({'padding-top':'30px'}); }
// паралакс
if($('.chsk').length){
$('.chsk>div').css({'background-position':'0px '+topScr/10+'px'});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment