Skip to content

Instantly share code, notes, and snippets.

@sunzsh
Created September 25, 2022 14:04
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save sunzsh/4883e4522ec0a85b7ec5cd68ab71ce77 to your computer and use it in GitHub Desktop.
Save sunzsh/4883e4522ec0a85b7ec5cd68ab71ce77 to your computer and use it in GitHub Desktop.
<style>
@keyframes shake {
10%,
90% {
transform: translate3d(-1px, 0, 0);
}
20%,
80% {
transform: translate3d(2px, 0, 0);
}
30%,
50%,
70% {
transform: translate3d(-4px, 0, 0);
}
40%,
60% {
transform: translate3d(4px, 0, 0);
}
}
.apply-shake {
animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
</style>
@sunzsh
Copy link
Author

sunzsh commented Sep 25, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment