Skip to content

Instantly share code, notes, and snippets.

@argyleink
Created February 25, 2013 19:23
Show Gist options
  • Save argyleink/5032446 to your computer and use it in GitHub Desktop.
Save argyleink/5032446 to your computer and use it in GitHub Desktop.
Infinite Animation Example
/**
* 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; }
}
{"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