Css Stopper Une Animation

[Solved] Css Stopper Une Animation | Perl - Code Explorer | yomemimo.com
Question : css stopper une animation

Answered by : purple-peacock

animation-play-state:paused;
/* Pour la compatibilité avec tous les navigateurs : */
-webkit-animation-play-state:paused;
-moz-animation-play-state:paused;
-o-animation-play-state:paused;

Source : | Last Update : Thu, 15 Oct 20

Question : css stopper une animation

Answered by : purple-peacock

/* On a une seule animation */
animation-play-state: running;
animation-play-state: paused;
/* On gère plusieurs animations */
/* avec des valeurs respectives */
animation-play-state: paused, running, running;
/* Valeurs globales */
animation-play-state: inherit;
animation-play-state: initial;
animation-play-state: unset;

Source : https://developer.mozilla.org/fr/docs/Web/CSS/animation-play-state | Last Update : Thu, 15 Oct 20

Answers related to css stopper une animation

Code Explorer Popular Question For Perl