Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created March 24, 2014 19:55
Show Gist options
  • Save jlittlejohn/9747755 to your computer and use it in GitHub Desktop.
Save jlittlejohn/9747755 to your computer and use it in GitHub Desktop.
JS: Scroll Effects
// Scroll Effects
$(window).scroll(function(){
var scrollVar = $(window).scrollTop();
var element = $('section#main');
$(homeContent).css({'bottom': scrollVar }); // scrolls element off page
$(homeContent).css({'opacity': (100 - scrollVar) / 100 }); // fades element out on scroll
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment