css animation让图标不断旋转

@keyframes rotating{
from{transform:rotate(0)}
to{transform:rotate(360deg)}
}
animation:rotating 1.2s linear infinite