orzubalsky / creative-computing-2018

0 stars 1 forks source link

different background per key frame #95

Open chanrxia opened 5 years ago

chanrxia commented 5 years ago

Is it possible to have different backgrounds for the shape in css per key frame?

orzubalsky commented 5 years ago

yes, you can change any css property within each keyframe:

@keyframes spin {
  0% {
    background: hsl(100, 10%, 50%);
  }
  25% {
    background: hsl(100, 60%, 50%);
  }
  100% {
    background: hsl(100, 100%, 50%);
  }
}