Created
July 24, 2018 23:30
-
-
Save beaucollins/5fe224994f06d573928917c8e4e3027e to your computer and use it in GitHub Desktop.
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
| .bouncing-button { | |
| animation: bounce 20s infinite; | |
| } | |
| @keyframes bounce { | |
| 0% { | |
| transform: translate(0, 0); | |
| } | |
| 1% { | |
| transform: translate(0, -25px); | |
| } | |
| 1.5% { | |
| transform: translate(0, 0); | |
| } | |
| 2% { | |
| transform: translate(0, -5px); | |
| } | |
| 2.25% { | |
| transform: translate(0, 0); | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment