animation team added animation.css
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…
Reference in New Issue