Created
November 18, 2015 12:13
-
-
Save SquidDev/618d4e48b1cec146debf 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
| * { | |
| animation-name: example; | |
| animation-duration: 10s; | |
| animation-iteration-count: infinite; | |
| animation-timing-function: linear; | |
| } | |
| /* Standard syntax */ | |
| @keyframes example { | |
| 0% {transform:rotate(0deg)} | |
| 100% {transform:rotate(360deg)} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment