英[dəˈrekʃn ] 美[dəˈrɛkʃən, daən-]
n. 방향 방향plural: 방향
CSS 애니메이션 방향 속성 통사론
애니메이션 방향 속성을 어떻게 사용하나요?
animation-direction 속성은 애니메이션을 차례로 역방향으로 재생할지 여부를 정의하는 데 사용됩니다. 애니메이션이 두 번 이상 재생되는 경우 animation-direction 값을 교대로 설정하여 역방향 애니메이션을 구현할 수 있습니다.
기능: 애니메이션을 역순으로 재생할지 여부를 정의합니다.
구문: animation-direction: Normal|alternate;
설명: normal 기본값입니다. 애니메이션이 정상적으로 재생되어야 합니다. 대체 애니메이션이 역방향으로 회전해야 합니다.
참고: 애니메이션이 한 번만 재생되도록 설정된 경우 이 속성은 효과가 없습니다.
CSS 애니메이션 방향 속성 예
<!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>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요