css stopper une animation

Solutions on MaxInterview for css stopper une animation by the best coders in the world

showing results for - "css stopper une animation"
Phoenix
01 Jan 2021
1/* Pour la compatibilité avec tous les navigateurs : */
2-webkit-animation-play-state:paused;
3-moz-animation-play-state:paused;
4-o-animation-play-state:paused;
5animation-play-state:paused;
Jacopo
11 Aug 2017
1/* On a une seule animation */
2animation-play-state: running;
3animation-play-state: paused;
4
5/* On gère plusieurs animations */
6/* avec des valeurs respectives */
7animation-play-state: paused, running, running;
8
9/* Valeurs globales */
10animation-play-state: inherit;
11animation-play-state: initial;
12animation-play-state: unset;
13