Created
February 1, 2023 11:51
-
-
Save dougblackjr/29bb6af82f82203e8ba1482c90b7320b to your computer and use it in GitHub Desktop.
Just Animate It
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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