Skip to content

Instantly share code, notes, and snippets.

@gkoberger
Created December 27, 2011 20:01
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 gkoberger/1524972 to your computer and use it in GitHub Desktop.
Save gkoberger/1524972 to your computer and use it in GitHub Desktop.
Mozilla Flutter
#featured-addons li.flutter {
-moz-animation-duration: 1s;
-moz-animation-iteration-count: infinite;
-moz-animation-name: flutter;
-moz-animation-timing-function: linear;
}
@-moz-keyframes flutter {
0% { -moz-transform: matrix(1, 0, 0.3, 1, -10px, 0); }
50% { -moz-transform: matrix(1, 0, 0.4, 1, -20px, 0); }
100% { -moz-transform: matrix(1, 0, 0.3, 1, -10px, 0); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment