Created
September 19, 2013 06:09
-
-
Save omurphy27/6619609 to your computer and use it in GitHub Desktop.
CSS Fade in Text Keyframe Animation Transition.css
This file contains 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
/* Fade in Text Keyframe Animation CSS */ | |
.fade-in-left { | |
-webkit-animation: fadeinleft 600ms ease-in-out; | |
-moz-animation: fadeinleft 600ms ease-in-out; | |
-o-animation: fadeinleft 600ms ease-in-out; | |
-ms-animation: fadeinleft 600ms ease-in-out; | |
animation: fadeinleft 600ms ease-in-out; | |
} | |
@-webkit-keyframes fadeinleft { | |
0%{ | |
opacity: 0; | |
-webkit-transform: translateX(100%); | |
} | |
100%{ | |
opacity: 1; | |
-webkit-transform: translateX(0%); | |
} | |
} | |
@-moz-keyframes fadeinleft { | |
0%{ | |
opacity: 0; | |
-moz-transform: translateX(100%); | |
} | |
100%{ | |
opacity: 1; | |
-moz-transform: translateX(0%); | |
} | |
} | |
@keyframes fadeinleft { | |
0%{ | |
opacity: 0; | |
transform: translateX(100%); | |
} | |
100%{ | |
opacity: 1; | |
transform: translateX(0%); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment