Skip to content

css 图标旋转

animation 属性

主要使用 animation 属性,animation 属性用来指定一组或多组动画,每组之间用逗号相隔。
https://developer.mozilla.org/zh-CN/docs/Web/CSS/animation

html
<i class="el-icon-refresh-right"></i>

<style scoped>
  .el-icon-refresh-right {
    animation: rotating 1.5s linear infinite
  }
</style>