Skip to content

Instantly share code, notes, and snippets.

@jaredpalmer
Created August 5, 2015 14:14
Show Gist options
  • Save jaredpalmer/25b18a3def3de705cc31 to your computer and use it in GitHub Desktop.
Save jaredpalmer/25b18a3def3de705cc31 to your computer and use it in GitHub Desktop.
EjrmLb
<div id="background"></div>
<nav id="nav">Nav</nav>
<div id="content">Content</div>
$(function() {
$(window).on('scroll', function() {
$('#background').css('margin-top', $(window).scrollTop() * -.3);
});
});
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
body {
margin: 0;
}
#nav {
margin: 0;
height: 50px;
background: #fff;
position: relative;
}
#content {
margin: 300px 0 0 0;
height: 600px;
background: #fff;
position: relative;
}
#background {
background: url('http://placekitten.com/g/600/350');
position: fixed;
left: 0;
right: 0;
top: 0;
height: 350px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment