Last active
April 9, 2017 07:40
-
-
Save khripunovpp/c2e21383c53184eb8ed3f31c9abad894 to your computer and use it in GitHub Desktop.
css-infinite-animation-keyframes
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
| @-webkit-keyframes infinite { | |
| 0%, 100% { | |
| -webkit-transform: translateX(0); | |
| } | |
| 50% { | |
| -webkit-transform: translateX(-100%); | |
| } | |
| } | |
| @keyframes infinite { | |
| 0%, 100% { | |
| transform: translateX(0); | |
| } | |
| 50% { | |
| transform: translateX(-100%); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment