HTML, CSS

CSS 애니메이션 기초 정리

유호야 2023. 6. 27. 05:52
반응형

아직도 애니메이션에 대해서 모른다는 것을 알고 바로 공부 빡!

물론 기초 강좌였다

 

 

 

alternate 왔다갔다 한다 

normal 이 기본값이다

alternate-reverse 거꾸로 출발 (거꾸로 normal)

 

linear는 가속도가 붙지 않은 경우이다.

 

 

forwards 마지막에 위치한 자리에서 멈추겠다

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Test</title>
</head>
<style>
    .box {
        width: 200px;
        height: 200px;
        background-color: blue;

        animation-name: ani_box;
        animation-duration: 2s;
        /* animation-delay: 4s; */
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-timing-function: ease-in-out;

    }

    @keyframes ani_box {
        from {
            margin-left: 0;
        }
        to {
            margin-left: 400px;
        }
    }
    
   


</style>
<body>
    <div class="box"></div>

</body>
</html>
반응형