Skip to content

Instantly share code, notes, and snippets.

@smlparry
Last active June 24, 2019 13:06
Show Gist options
  • Save smlparry/b0c1c0f06861bb8f68903aca3e4bccaa to your computer and use it in GitHub Desktop.
Save smlparry/b0c1c0f06861bb8f68903aca3e4bccaa 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