Skip to content

Instantly share code, notes, and snippets.

<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>