코드랩 레퍼런스
animation-direction 본문
특징 | 설명 |
---|---|
기본 값 | normal |
상속 | 안됨 |
애니메이션 | 안됨 |
버전 | CSS3 |
Definition
- animation-direction 애니메이션 움직임 방향을 설정합니다.
Syntax
Property
속성 값 | 설명 |
---|---|
normal | 애니메이션의 방향을 정상적(기본값)으로 설정합니다. |
reverse | 애니메이션 움직임의 방향을 역방향으로 설정합니다. |
alternate | 애니메이션 움직임의 방향을 순방향을 진행 후 역방향으로 설정합니다. |
alternate-reverse | 애니메이션 움직임의 방향을 역방향을 진행 후 순방향으로 설정합니다. |
inherit | 애니메이션 움직임을 상위 요소한테 상속받습니다. |
Compatibility
6 | 7 | 8 | 9 | 10 | 11 | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
animation-direction |
Sample1 클릭하면 이미지 방향을 설정하는 예제입니다.
애니메이션(Animation-direction)
- .list .normal {animation: move2 3s 100 ease; Animation-direction: normal;}
- .list .reverse {animation: move2 3s 100 ease; Animation-direction: reverse;}
- .list .alternate {animation: move2 3s 100 ease; Animation-direction: alternate;}
- .list .alternate-reverse {animation: move2 3s 100 ease; Animation-direction: alternate-reverse;}
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>CSS</title>
<style>
.list > div {width: 60px; height: 60px; background-image: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); line-height: 60px; text-align: center; border-radius: 50%;font-size: 12px; color: #fff; margin: 10px; position: relative;}
.list div.count1 {animation: move1 1s ease; animation-iteration-count: 1}
.list div.count2 {animation: move1 1s ease; animation-iteration-count: 2}
.list div.count3 {animation: move1 1s ease; animation-iteration-count: 3}
.list div.count4 {animation: move1 1s ease; animation-iteration-count: infinite;}
@keyframes move1 {
0% {left: 0%;}
50% {left: calc(100% - 70px);}
100% {left: 0%;}
}
</style>
</head>
<body>
<div class="list">
<div>count</div>
<div>count</div>
<div>count</div>
<div>count</div>
</div>
<div class="btn">
<a href="#c" class="line">Click : 클릭하면 이미지가 움직입니다.</a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script type="text/javascript">
$(".btn a").click(function(){
$(".list > div").eq(0).addClass("count1");
$(".list > div").eq(1).addClass("count2");
$(".list > div").eq(2).addClass("count3");
$(".list > div").eq(3).addClass("count4");
});
</script>
</body>
</html>