all was dandy when i was replacing links with tumblr gifs but the second it was actually up to me to try and make my own lines i hit multiple dead ends. someone anyone please help if u know how to animate (specifically spin/rotate an image in css) please let me know. i want to be knowledgeable this is so fun.
this might help if you still use this?? you can edit this to change any css property so long you make a new animation (unless youre changing multiple things in the same animation you can do that too!!)
``
@keyframes SPIN {
0% { rotate: 0deg;}
100% { rotate: 359deg;}
}
[thing you wanna make spin] {
animation-name: SPIN;
animation-duration: 20s;
animation-iteration-count: infinite;
}
``