美文网首页
动画效果

动画效果

作者: 走花鹿 | 来源:发表于2021-06-17 15:11 被阅读0次

    动画效果

    通过关键字@keyframes来定义一个名叫runCircle的动画效果

    @keyframes runCircle {
      0% {
        transform: rotate(0);
      }
      50% {
        transform: rotate(180deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    

    然后在样式中使用

      .loading_icon{
        animation: runCircle infinite 1s linear;
        display: inline-block;
      }
    

    拓展

    animation

    属性

    相关文章

      网友评论

          本文标题:动画效果

          本文链接:https://www.haomeiwen.com/subject/afecyltx.html