css animation让图标不断旋转

@keyframes rotating{
from{transform:rotate(0)}
to{transform:rotate(360deg)}
}

animation:rotating 1.2s linear infinite
原文地址:https://www.cnblogs.com/chenweichu/p/5687027.html