• 회원가입
  • 로그인
  • 구글아이디로 로그인

[animation] CSS - animation-direction 속성 - 애니방향 (= 움직임방향 = 애니메이션디렉션속성, IE10)

animation-direction 예제

 

<style> 

#hz {

  padding:20px 30px;

  width:200px;

  background: red;

  position: relative;

  -webkit-animation: homzzang 5s 2; /* Safari 4.0 - 8.0 */

  -webkit-animation-direction: alternate; /* Safari 4.0 - 8.0 */

  animation: homzzang 5s 2;

  animation-direction: alternate;

}


/* Safari 4.0 - 8.0 */

@-webkit-keyframes homzzang {

  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;}

}


@keyframes homzzang {

  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>


<div id='hz'>홈짱닷컴 Homzzang.com</div>



결과보기

 

 

animation-direction 정의

 

애니메이션 방향 (= 움직이는 방향)

 



기본값 : normal
속성상속 : X
애니효과 : X
CSS버전: CSS3
JS구문 : object.style.animationDirection="속성값"
브라우저: IE10이상 주요 최신브라우저 (구버전 경우, -webkit- , -moz- , -o- 등 붙여 사용)

 

 

 

animation-direction 구문

 

선택자 {animation-direction: 속성값;}

 


 

[속성값]

 

normal

기본값. 애니메이션 정방향 재생

 

reverse

애니메이션 역방향 재생.

 

alternate

애니메이션 정방향 재생 후 역방향 재생.

 

alternate-reverse

애니메이션 역방향 재생 후 정방향 재생.

 

initial

이 속성의 기본값으로 설정.

 

inherit

부모 요소 속성을 상속.

 



분류 제목
column CSS - column-rule-style 속성 - 컬럼구분자 모양 지정 (= 컬럼구분바 생김새 = colu…
column CSS - Multiple Columns - (멀티 컬럼 개괄) ※ 열 나누기 = 단락 나누기
css CSS - IE 전용 CSS핵
func CSS - max() 함수 - 최대값 (= max함수 = 맥스함수)
box CSS - block-size 속성 - 블락 방향으로 요소 크기 지정 (= block-size속성 = 블락…
column CSS - column-fill 속성 - 컬럼 채우기 방식 지정 (= column-fill속성 = 컬럼필속성…
selector CSS - :out-of-range 가상선택자 - 지정범위밖값 갖는 요소 선택 (=아웃어브레인지선택자, IE…
selector CSS - :first-of-type 가상선택자 - 지정타입 첫번째자식요소 (순서선택자/순번선택자/타입선택자…
func CSS - min() 함수 - 최소값 (= min함수 = 민함수)
column CSS - column-rule-color 속성 - 컬럼구분자 색상 지정 (= 컬럼구분바 색깔 = colum…
grid CSS - row-gap 속성(C) - (grid/flex)레이아웃 행간 간격 지정 (= row-gap속성 …
column CSS - column-gap 속성 - 컬럼간의 간격 지정 (= column-gap속성 = 컬럼갭속성)
pagination CSS - 페이징 - 글자 크기 (Pagination Size)
transition CSS - transition-property 속성 - 트랜지션 효과 적용할 속성명 지정 (= transit…
pagination CSS - 페이징 - 링크칸 간격 띄우기 (Space Between Links)
column CSS - column-count 속성 - 컬럼 개수 지정 (= 요소 안 텍스트를 지정 컬럼개수로 구분 = …
column CSS - column-rule-width 속성 - 컬럼구분자 너비 지정 (= 컬럼구분바 두께 = colum…
selector CSS - :nth-last-of-type(n) 가상선택자 - 타입마지막n번째 자식요소 (순서선택자,,타입…
pagination CSS - 페이징 - 빵메뉴 (= Breadcrumbs : 브레드크럼즈 = 메뉴 현재위치 표시)
border CSS - border-top-right-radius 속성 - 테두리상단우측둥글기 지정 (= 보더탑라이트레이…
12/27
목록
찾아주셔서 감사합니다. Since 2012