css跳动样式

发布时间 2023-07-21 14:15:48作者: 小十六哇

  animation: warn 1.5s ease-out 0s infinite;

}

@keyframes warn {

  0% {

    transform: scale(0.5);

    opacity: 1;

  }

 

  30% {

    opacity: 1;

  }

 

  100% {

    transform: scale(1.2);

    opacity: 0;

  }

}

 

:style=“changeBgcolor(eqStatus)"

changeBgcolor(status) {

      return status ? "background:#07B630" : "background:#F52E2E";

    },