-
-
Save QYG2297248353/285a605f66558482f013acae02ad0c9d to your computer and use it in GitHub Desktop.
摇晃动画 class 引用 apply-shake 会产生0.82秒晃动
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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