next.js/test/e2e/app-dir/css-modules-scoping/app/animation/animation.module.css
animation.module.css25 lines358 B
@keyframes example {
  0% {
    background-color: red;
  }
  25% {
    background-color: yellow;
  }
  50% {
    background-color: blue;
  }
  75% {
    background-color: green;
  }
  100% {
    background-color: red;
  }
}

.animated-item {
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
Quest for Codev2.0.0
/
SIGN IN