A Pen by Razafindrakoto on CodePen.
Created
June 20, 2018 06:56
-
-
Save sedera-tax/5565ec710b07cd7f883c5a3645386851 to your computer and use it in GitHub Desktop.
Parallax
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 class="background background1"> | |
<div>Some content</div> | |
</div> | |
<div class="background background2"> | |
<div>A Second Page</div> | |
</div> | |
<div class="background background3"> | |
<div>A Third Page</div> | |
</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
html, | |
body { | |
min-height:100%; | |
min-width:100%; | |
height: 100%; | |
padding:0; | |
margin:0; | |
text-align:center; | |
font-family: Arial; | |
background: #cacaca; | |
} | |
.background { | |
width: 100%; | |
min-height: 100%; | |
background-size: contain; | |
background-position: center center; | |
background-attachment: fixed; | |
background-repeat: no-repeat; | |
} | |
.background > div { | |
background-color: #000000; | |
color: #ffffff; | |
padding: 30px 0; | |
} | |
.background1 { | |
background-image: url(http://placehold.it/800x450&text=Background1); | |
} | |
.background2 { | |
background-image: url(http://placehold.it/800x450&text=Background2); | |
} | |
.background3 { | |
background-image: url(http://placehold.it/800x450&text=Background3); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment