Skip to content

Instantly share code, notes, and snippets.

@hrumhrumble
Last active August 29, 2015 13:58
Show Gist options
  • Save hrumhrumble/9930496 to your computer and use it in GitHub Desktop.
Save hrumhrumble/9930496 to your computer and use it in GitHub Desktop.
$(function () {
$('#page').append($("<div class='bg'></div>"));
});
$(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');
$('#bg').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