Skip to content

Instantly share code, notes, and snippets.

@skwebs
Forked from smlparry/css-parallax-2.css
Created June 24, 2019 13:06
Show Gist options
  • Save skwebs/a3222749e9897744d0e85b869e318930 to your computer and use it in GitHub Desktop.
Save skwebs/a3222749e9897744d0e85b869e318930 to your computer and use it in GitHub Desktop.
.element {
// ...
transform: translateZ(0px);
animation: animateZ 2s infinite;
}
@keyframes animateZ {
from {
transform: translateZ(0px);
}
to {
transform: translateZ(4px);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment