css跳动样式

  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";

    },

posted @ 2023-07-21 14:08  小十六哇  阅读(24)  评论(0编辑  收藏  举报