Skip to content

Instantly share code, notes, and snippets.

@ericdfields
Created January 25, 2011 15:23
Show Gist options
  • Save ericdfields/795065 to your computer and use it in GitHub Desktop.
Save ericdfields/795065 to your computer and use it in GitHub Desktop.
.new-deals-indicator {
-webkit-animation-name: gentleBounce;
-webkit-animation-duration: 3s;
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes gentleBounce {
0% {
@include translateY(0)
}
50% {
@include translateY(10px)
}
100% {
@include translateY(0)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment