adding a spining animation thing to CSS

This commit is contained in:
2022-05-20 13:48:30 -06:00
parent 7f1dbd0f14
commit 5dbfc74c3b

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/ **/
.anim-show {