Skip to content

Instantly share code, notes, and snippets.

@dougblackjr
Created February 1, 2023 11:51
Show Gist options
  • Save dougblackjr/29bb6af82f82203e8ba1482c90b7320b to your computer and use it in GitHub Desktop.
Save dougblackjr/29bb6af82f82203e8ba1482c90b7320b to your computer and use it in GitHub Desktop.
Just Animate It
img, video, h1,h2,h3,h4,h5,h6,p,span {
-webkit-animation:spin 1s linear infinite;
-moz-animation:spin 1s linear infinite;
animation:spin 1s linear infinite;
}
@-moz-keyframes spin {
100% { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
100% {
-webkit-transform: rotate(360deg);
transform:rotate(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment