Skip to content

Instantly share code, notes, and snippets.

@LiamKarlMitchell
Last active October 29, 2017 22:53
Show Gist options
  • Save LiamKarlMitchell/8692a7ed8a901c8a9a7256cf92e862e6 to your computer and use it in GitHub Desktop.
Save LiamKarlMitchell/8692a7ed8a901c8a9a7256cf92e862e6 to your computer and use it in GitHub Desktop.
Drunk Stack Overflow - Drunk CSS
@keyframes rotating-function {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(2deg);
filter: blur(1px);
}
50% {
transform: rotate(0deg);
filter: blur(1.25px);
}
75% {
transform: rotate(-2deg);
filter: blur(1px);
}
100% {
transform: rotate(0deg);
}
}
table {
animation: rotating-function 10s linear infinite;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment