css animation-direction 속성은 애니메이션을 차례로 역방향으로 재생할지 여부를 정의하는 데 사용됩니다. 애니메이션이 두 번 이상 재생되는 경우 애니메이션 방향의 값을 교대로 설정하여 역방향 애니메이션을 구현할 수 있습니다. 차례로 재생합니다.
CSS 애니메이션 방향 속성을 사용하는 방법은 무엇인가요?
animation-direction 속성은 애니메이션이 두 번 이상 재생될 때 애니메이션을 역방향으로 재생할지 여부를 정의하는 데 사용되며 animation-direction 값을 설정할 수 있습니다. 애니메이션 재생을 차례로 실현합니다.
기능: 애니메이션을 차례로 역방향으로 재생할지 여부를 정의합니다.
구문:
animation-direction: normal|alternate;
설명: 일반 기본값입니다. 애니메이션이 정상적으로 재생되어야 합니다. 대체 애니메이션이 역방향으로 회전해야 합니다.
참고: 애니메이션이 한 번만 재생되도록 설정된 경우 이 속성은 효과가 없습니다.
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>
효과 출력:
#🎜🎜 #
위 내용은 CSS 애니메이션 방향 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!