adding a spining animation thing to CSS

This commit is contained in:
Brian 2022-05-20 13:48:30 -06:00
parent 7f1dbd0f14
commit 5dbfc74c3b
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

@ -1,3 +1,11 @@
.spin {
animation: spin 1.5s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/** https://thinkdobecreate.com/articles/css-animating-newly-added-element/ **/ /** https://thinkdobecreate.com/articles/css-animating-newly-added-element/ **/
.anim-show { .anim-show {