Maison > Article > interface Web > Comment utiliser la propriété CSS animation-direction
La propriété CSS animation-direction est utilisée pour définir si l'animation doit être jouée à l'envers à tour de rôle ; lorsque l'animation est jouée plus d'une fois, nous pouvons réaliser l'animation à l'envers en définissant la valeur de animation-direction sur alterner ; .
Comment utiliser la propriété css animation-direction ?
L'attribut animation-direction est utilisé pour définir si l'animation doit être jouée à l'envers à tour de rôle ; lorsque l'animation est jouée plus d'une fois, nous pouvons réaliser le tour d'animation en définissant la valeur d'animation. -direction pour alterner.
Fonction : Définit si l'animation doit être jouée à l'envers à tour de rôle.
Syntaxe :
animation-direction: normal|alternate;
Description : normal Valeur par défaut. L'animation devrait jouer normalement. alternative L'animation doit se relayer à l'envers.
Remarque : Si l'animation est configurée pour être jouée une seule fois, cet attribut n'a aucun effet.
Exemple d'utilisation de la propriété CSS animation-direction
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:myfirst 5s infinite; animation-direction:alternate; /* Safari and Chrome */ -webkit-animation:myfirst 5s infinite; -webkit-animation-direction:alternate; } @keyframes myfirst { 0% {background:red; left:0px; top:0px;} 25% {background:yellow; left:200px; top:0px;} 50% {background:blue; left:200px; top:200px;} 75% {background:green; left:0px; top:200px;} 100% {background:red; left:0px; top:0px;} } @-webkit-keyframes myfirst /* Safari and Chrome */ { 0% {background:red; left:0px; top:0px;} 25% {background:yellow; left:200px; top:0px;} 50% {background:blue; left:200px; top:200px;} 75% {background:green; left:0px; top:200px;} 100% {background:red; left:0px; top:0px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-direction 属性。</p> <div></div> </body> </html>
Sortie d'effet :
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!