Animation Duration
Preview
Code
<style>
.box{
width:80px;
height:80px;
background:#22c55e;
animation:spin 3s linear infinite;
}
@keyframes spin{
from{transform:rotate(0deg);}
to{transform:rotate(360deg);}
}
</style>
<div class="box"></div>