CSS animation에서 수박이 귀엽게 흔들리는 녀석에 대해 알아보았습니다.

4034 단어 CSSanimation
아래 사이트의 西瓜의 흔들리는 방법이 좋았기 때문에 메모.http://iconmelon.com/ (이제 사이트가 없어졌습니다.
(1년 반전 정도 왠지 한정 공유에 있었으므로 공개)



.swing {
        animation-name: swing;
        animation-duration: 2s;
        animation-delay: .45s;
}

@-webkit-keyframes swing {
    0%,100% { 
        -webkit-transform-origin: bottom center; 
    }
    10% { -webkit-transform: rotate(-15deg); }  
    20% { -webkit-transform: rotate(10deg); }
    30% { -webkit-transform: rotate(-5deg); }   
    40% { -webkit-transform: rotate(5deg); }    
    50% { -webkit-transform: rotate(-3deg); }

    60% { -webkit-transform: rotate(2deg); }
    70% { -webkit-transform: rotate(-2deg); }
    80% { -webkit-transform: rotate(1deg); }
    90% { -webkit-transform: rotate(-1deg); }
    100% { -webkit-transform: rotate(0deg); }
}

test

좋은 웹페이지 즐겨찾기