Created
December 27, 2011 20:01
-
-
Save gkoberger/1524972 to your computer and use it in GitHub Desktop.
Mozilla Flutter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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