Skip to content

Instantly share code, notes, and snippets.

@skwebs
Forked from smlparry/css-parallax-1.css
Created June 24, 2019 13:05
Show Gist options
  • Save skwebs/05b7dd6ecf961cbbd34cdff5c5cf7764 to your computer and use it in GitHub Desktop.
Save skwebs/05b7dd6ecf961cbbd34cdff5c5cf7764 to your computer and use it in GitHub Desktop.
css-parallax-1
# CSS
.container {
display: flex;
justify-content: center;
align-items: center;
border: 1px solid black;
height: 200px;
width: 200px;
perspective: 8px;
perspective-origin: 50%;
}
.element {
height: 100px;
width: 100px;
background: red;
}
# Markup
<div class="container">
<div class="element"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment