Last active
August 29, 2015 14:03
-
-
Save maxxcrawford/fc2b99710bc49c812a18 to your computer and use it in GitHub Desktop.
Fixed Position / Cover Image Fix (Src: http://goo.gl/0wkXIk)
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="wrapper"> | |
<div id="container"></div> | |
<p>Scroll Down</p> | |
</div> | |
<div id="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
$(window).scroll(function() { | |
var scrolledY = $(window).scrollTop(); | |
$('#container').css('background-position', 'left ' + ((scrolledY)) + 'px'); | |
}); | |
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
#wrapper { | |
background: #bada55; | |
width:100%; | |
height: 400px; | |
} | |
#container { | |
background-image:url("http://farm3.staticflickr.com/2533/4062253262_90a3635234_o.jpg"); | |
background-attachment:scroll; | |
background position:left top; | |
background-size:cover; | |
width:100%; | |
height:300px; | |
} | |
#content { | |
height:2000px; | |
} | |
p { | |
line-height:1.5; | |
font-family:sans-serif; | |
font-size:3.875em; | |
margin: 0 0 20px; | |
text-align:center; | |
color:#fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment