Last active
February 22, 2020 11:39
-
-
Save HarryAdney/4585a97164f8ac94687363c4780df484 to your computer and use it in GitHub Desktop.
Parallax scrolling
This file contains 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*** | |
<div class="wrapper"> | |
<div class="box box-back"> | |
<h3>SWEETIES</h3> | |
</div> | |
<div class="box box-front"> | |
<img src="https://cdn.pixabay.com/photo/2017/03/30/15/47/churros-2188871_960_720.jpg" /> | |
</div> | |
</div> | |
***css*** | |
img { | |
width: 100%; | |
} | |
h3 { | |
font-size: 60px; | |
color: white; | |
} | |
.box.box-back { | |
transform: translateZ(0); | |
z-index: 99; | |
text-align: center; | |
} | |
.box.box-front { | |
width: 1500px; | |
transform: translateZ(-1px) scale(2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment