Skip to content

Instantly share code, notes, and snippets.

@hrumhrumble
Forked from ig-l/gist:9949739
Last active August 29, 2015 13:58
Show Gist options
  • Save hrumhrumble/9949751 to your computer and use it in GitHub Desktop.
Save hrumhrumble/9949751 to your computer and use it in GitHub Desktop.
$(window).scroll(function(e){
parallax();
});
function parallax() {
var scrolled = $(window).scrollTop();
var list_1 = parseInt($('.list_left1').css('top'));
$('#bg').css('top', -(scrolled * 0.2) + 'px');
$('.list_left1').css('top', list_1 + (scrolled * 0.3) + 'px');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment