Skip to content

Instantly share code, notes, and snippets.

@omniosi
Last active December 20, 2015 09:19
Show Gist options
  • Save omniosi/6107123 to your computer and use it in GitHub Desktop.
Save omniosi/6107123 to your computer and use it in GitHub Desktop.
parallax scrolling
$(document).ready(function(){
$(window).bind('scroll',function(e){
parallax();
});
});
function parallax(){
var scrollPosition = $(window).scrollTop();
$('#stars').css('top',(0 - (scrollPosition * .2))+'px');
$('#images').css('top', (0 - (scrollPosition * .5)) + 'px');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment