css 动画 animation 连写备注

场景:

比如页面上的按钮,要做出不停放大缩小的效果。

使用css 中的animation

代码:

 animation: scaleDrew 2.5s ease-in-out infinite;
 animation:动画名称 动画时长 动画速度 动画播放次数
动画名称:
@keyframes scaleDrew {
/* 定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称 */
    0% {
      transform: scale(1);
    }

    25% {
      transform: scale(1.05);
    }

    50% {
      transform: scale(1);
    }

    75% {
      transform: scale(1.05);
    }
  }

 

posted @ 2021-04-07 09:41  sunRise113  阅读(456)  评论(0编辑  收藏  举报