Skip to content

Instantly share code, notes, and snippets.

@beaucollins
Created July 24, 2018 23:30
Show Gist options
  • Select an option

  • Save beaucollins/5fe224994f06d573928917c8e4e3027e to your computer and use it in GitHub Desktop.

Select an option

Save beaucollins/5fe224994f06d573928917c8e4e3027e to your computer and use it in GitHub Desktop.
.bouncing-button {
animation: bounce 20s infinite;
}
@keyframes bounce {
0% {
transform: translate(0, 0);
}
1% {
transform: translate(0, -25px);
}
1.5% {
transform: translate(0, 0);
}
2% {
transform: translate(0, -5px);
}
2.25% {
transform: translate(0, 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment