Skip to content

Instantly share code, notes, and snippets.

@rginamt
Created September 4, 2012 18:46
Show Gist options
  • Select an option

  • Save rginamt/3624873 to your computer and use it in GitHub Desktop.

Select an option

Save rginamt/3624873 to your computer and use it in GitHub Desktop.
TEST: animation
/**
* TEST: animation
*/
@keyframes myfirst
{
from {background: red;}
to {background: yellow;}
}
@-moz-keyframes myfirst /* Firefox */
{
from {background: red;}
to {background: yellow;}
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
from {background: red;}
to {background: yellow;}
}
@-o-keyframes myfirst /* Opera */
{
from {background: red;}
to {background: yellow;}
}
a{
animation: myfirst 5s;
-moz-animation: myfirst 5s; /* Firefox */
-webkit-animation: myfirst 5s; /* Safari and Chrome */
-o-animation: myfirst 5s; /* Opera */
}
<!-- content to be placed inside <body>…</body> -->
<a href="#">hola</a>
{"view":"split-vertical","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