Created
August 5, 2015 14:14
-
-
Save jaredpalmer/25b18a3def3de705cc31 to your computer and use it in GitHub Desktop.
EjrmLb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="background"></div> | |
<nav id="nav">Nav</nav> | |
<div id="content">Content</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$(window).on('scroll', function() { | |
$('#background').css('margin-top', $(window).scrollTop() * -.3); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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