Skip to content

Instantly share code, notes, and snippets.

@ig-l
Created April 3, 2014 07:20
Show Gist options
  • Save ig-l/9949739 to your computer and use it in GitHub Desktop.
Save ig-l/9949739 to your computer and use it in GitHub Desktop.
<script>
$(window).scroll(function(e){
parallax();
});
function parallax(){
var scrolled = $(window).scrollTop();
$('.bg, .bot_bg_list, .list_left1, .list_right').css('top',-(scrolled*0.2)+'px');
}//@ sourceURL=pen.js
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment