Les valeurs jouent à l'animation d'état 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