Created
February 25, 2013 19:23
-
-
Save argyleink/5032446 to your computer and use it in GitHub Desktop.
Infinite Animation Example
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
/** | |
* Infinite Animation Example | |
*/ | |
div { | |
width:100px; height:100px; | |
background-color:red; | |
position:absolute; | |
animation: in_and_out 1s ease-in-out infinite; | |
} | |
@keyframes in_and_out { | |
0% { left:0; } | |
50% { | |
transform: translateX(100px) rotateX(180deg); | |
width:200px; | |
background-color:orange; | |
} | |
100% { left:0; } | |
} |
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
<div></div> |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment