SOURCE

console 命令行工具 X clear

                    
>
console
<div></div>
div{
    width: 200px;
    height: 200px;
    margin: 100px;
    background-color: rgb(65, 161, 225);
    animation: rotate 3s ease-in-out infinite both;
    animation-delay: 3s;
}
@keyframes rotate {
    100%{
        transform: rotate(1440deg)
    }
}