css实现360度无限旋转目标{animation: 2s rotate linear infinite} @keyframes rotate { 0%{} 100%{transform:rotate(360deg);} }
评论