Nilai Play State Animation CSS

/* the animation-play-state can have 2 values: paused or running */

#myElement{
  animation: stuff;
  animation-play-state: running;
}

#myElement{
  animation: stuff;
  animation-play-state: paused;
}
Cloudy Caribou