Last active
June 2, 2019 07:51
-
-
Save daybrush/4495f1a75463a18e373f18fd09d6f5d8 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
/* CSS */ | |
.selector { | |
animation-name: a; | |
animation-duration: 3s; | |
animation-timing-function: ease; | |
-webkit-animation-name: a; | |
-webkit-animation-duration: 3s; | |
-webkit-timing-function: ease; | |
-moz-animation-name: a; | |
-moz-animation-duration: 3s; | |
-moz-timing-function: ease; | |
} | |
@keyframes a { | |
0% { | |
transform: translate(0px); | |
} | |
100% { | |
transform: translate(100px); | |
} | |
} | |
@-webkit-keyframes a { | |
0% { | |
-webkit-transform: translate(0px); | |
} | |
100% { | |
-webkit-transform: translate(100px); | |
} | |
} | |
@-moz-keyframes a { | |
0% { | |
-moz-transform: translate(0px); | |
} | |
100% { | |
-moz-transform: translate(100px); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment