Skip to content

Instantly share code, notes, and snippets.

@joshfry
Created March 26, 2014 05:40
Show Gist options
  • Save joshfry/9777443 to your computer and use it in GitHub Desktop.
Save joshfry/9777443 to your computer and use it in GitHub Desktop.
Easy Parallax
(function($){
function parallax() {
var scrolled = $(window).scrollTop();
$('.parallax')
.css('top', 'calc(140px + ' + (scrolled * .6) + 'px)')
.css('opacity', 1 - (scrolled * .003));
};
parallax();
$(window).scroll(function(){
parallax();
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment