Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save faruk09/34efb071dba31b41fd54137886919318 to your computer and use it in GitHub Desktop.
Save faruk09/34efb071dba31b41fd54137886919318 to your computer and use it in GitHub Desktop.
-webkit-animation: minus 0.5s; // Add this to a icon or element or div
@keyframes minus {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment