Created
August 10, 2017 05:32
-
-
Save stanruss/7f9b658d77b94e3294c9fc37ead673e8 to your computer and use it in GitHub Desktop.
@Keyframes css
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: animation-name animation-duration animation-timing-function animation-delay animation-iteration-count animation-direction; | |
animation-name: name | |
animation-duration: 2s/2ms | |
animation-timing-function: ease, linear, ease-in, ease-out, ease-in-out, cubic-bezier(x1, y1, x2, y2), step-start, step-end, | |
steps(количество шагов,start|end) | |
animation-delay: 2s/2ms | |
animation-iteration-count: infinite, число раз повтор | |
animation-direction: alternate(↨), alternate-reverse(↨↨), normal(↑), reverse(↓) | |
animation-play-state: paused, running |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment