Skip to content

Instantly share code, notes, and snippets.

@QYG2297248353
Forked from sunzsh/shake.css
Last active September 30, 2022 17:27
Show Gist options
  • Select an option

  • Save QYG2297248353/285a605f66558482f013acae02ad0c9d to your computer and use it in GitHub Desktop.

Select an option

Save QYG2297248353/285a605f66558482f013acae02ad0c9d to your computer and use it in GitHub Desktop.
摇晃动画 class 引用 apply-shake 会产生0.82秒晃动
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment