Skip to content

Instantly share code, notes, and snippets.

@brunojppb
Created February 19, 2020 19:07
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 brunojppb/6ddf2e0a81cd53dbbe0a6615a1a821ac to your computer and use it in GitHub Desktop.
Save brunojppb/6ddf2e0a81cd53dbbe0a6615a1a821ac to your computer and use it in GitHub Desktop.
Floating CSS animation
img {
animation: floating infinite 3s ease-in-out;
}
@keyframes flaoting {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-5px);
}
100% {
transform: translateY(0px);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment