CSS3 애니메이션 방향 속성


  번역 결과:
애니메이션

英[dəˈrekʃn ] 美[dəˈrɛkʃən, daən-]

n. 방향 방향

plural: 방향

CSS3 애니메이션 방향 속성통사론

기능: 애니메이션을 역순으로 재생할지 여부를 정의합니다.

구문: ​​animation-direction: Normal|alternate;

설명: normal 기본값입니다. 애니메이션이 정상적으로 재생되어야 합니다. 대체 애니메이션이 역방향으로 회전해야 합니다.​

참고: 애니메이션이 한 번만 재생되도록 설정된 경우 이 속성은 효과가 없습니다.

애니메이션이 두 번 이상 재생되는 경우 애니메이션 방향의 값을 교대로 설정하여 애니메이션이 역방향으로 재생되도록 할 수 있습니다. 기본적으로 이 속성의 값은 Normal입니다. 이는 애니메이션이 정상적으로 재생된다는 의미입니다

CSS3 애니메이션 방향 속성예

<!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>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요

인기 추천

비디오

Q&A