Skip to content

Instantly share code, notes, and snippets.

@hermo
Created June 14, 2012 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hermo/2929993 to your computer and use it in GitHub Desktop.
Save hermo/2929993 to your computer and use it in GitHub Desktop.
Untitled
@-webkit-keyframes blinker {
from{
background-position: 20px 0;
}
to{
background-position: 0 0;
}
}
.foo {
padding: 0.2em;
}
.foo:hover {
-webkit-animation: blinker 0.3s linear infinite;
background: -webkit-linear-gradient(-45deg, transparent 25%, #E1ECFF 25%, #E1ECFF 50%, transparent 50%, transparent 75%, #E1ECFF 75%, #E1ECFF);
background-position: 0 0;
background-size: 20px 20px;
}
<a class="foo">Lisää koriin(foo)</a>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment