Skip to content

Instantly share code, notes, and snippets.

@matiaskorhonen
Created April 17, 2019 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matiaskorhonen/a10241dce69a668d06ff076b3c930828 to your computer and use it in GitHub Desktop.
Save matiaskorhonen/a10241dce69a668d06ff076b3c930828 to your computer and use it in GitHub Desktop.
body {
transform: skew(20deg);
animation: shake 2s infinite;
animation-direction: alternate;
}
@keyframes shake {
0% {
transform: skewX(20deg);
}
100% {
transform: skewX(-20deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment