css 旋转图标

.rotate {
  animation: rotate 1s infinite;
  -webkit-animation: rotate 1s infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

你可能感兴趣的:(css,css,旋转图标,animation)