티스토리 뷰

부트캠프/Front

[CSS] Animation

혀니hyun 2025. 3. 7. 17:34
.element {
            background-color: aquamarine; 
            height: 100px;
            width: 100px;
            position: relative;
            animation: animation-test 3s linear 2s infinite alternate;
}

@keyframes animation-test {
    0% {
        left: 0px;
        top: 0px;
    }
    25% {
        transform: rotate(30deg);
        background-color: lightcoral;
        left: 150px;
        top: 100px;
    }
    50%{
        transform: rotate(30deg);
        left: 0px;
        top: 150px;
    }
    100%{
        left: 0px;
        top: 0px;
    }

}

 

결과

 

 

Animatino 속성 

'부트캠프 > Front' 카테고리의 다른 글

[CSS] Flexbox : Container 속성  (0) 2025.03.07
[CSS] Flexbox  (0) 2025.03.07
[CSS] Transform  (0) 2025.03.07
[HTML] Input  (0) 2025.03.07
[CSS] Text/Image Styling  (0) 2025.03.07
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG more
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
글 보관함