Skip to content

Instantly share code, notes, and snippets.

@dtinth
Created June 21, 2011 18:03
Show Gist options
  • Save dtinth/1038467 to your computer and use it in GitHub Desktop.
Save dtinth/1038467 to your computer and use it in GitHub Desktop.
BOUNCE!! BOUNCE!!`
@namespace url(http://www.w3.org/1999/xhtml);
a:hover, input:hover, textarea:hover
a:focus, input:focus, textarea:focus {
-moz-animation-duration: 0.2s;
-moz-animation-iteration-count: infinite;
-moz-animation-name: bounceszz;
-moz-animation-direction: alternate;
}
@-moz-keyframes bounceszz {
from { -moz-transform: scale(1); }
to { -moz-transform: scale(1.1); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment