animation team added animation.css

main
Stephen Kerr 2 years ago
parent 98964752c6
commit bb582e81cd

@ -0,0 +1,13 @@
#css animation that spins a class around forever#
.spinny{
animation: rotate 5s infinite;
}
@keyframes rotate {
from {
transform: rotate(360deg);
}
to {
transform: rotate(-360deg);
}}
Loading…
Cancel
Save