Created
August 5, 2019 16:09
-
-
Save jeffscottward/09e1682c2dbf24afabcfa00622f25d4d to your computer and use it in GitHub Desktop.
CSS3 Animation Fast Refrence
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
.loading { | |
animation: pulse .5s linear infinite; | |
} | |
@keyframes pulse { | |
from { background: white; } | |
to { background: red; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment