css动画,展开折叠图标

@keyframes packupArrowFlow {
    0% {
        bottom: 0;
    }
    70% {
        bottom: 10px;
    }
}
@-webkit-keyframes packupArrowFlow {
    0% {
        bottom: 0;
    }
    70% {
        bottom: 10px;
    }
}
.gradient .packupArrow {
    -webkit-animation: packupArrowFlow 1s ease infinite;
    animation: packupArrowFlow 1s ease infinite;
}

使用关键帧动画

相关文章:

  • 2021-12-03
  • 2021-11-08
  • 2021-08-30
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2021-06-03
  • 2021-07-26
猜你喜欢
  • 2021-12-23
  • 2021-06-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-13
  • 2022-12-23
相关资源
相似解决方案