CSS animation에서 수박이 귀엽게 흔들리는 녀석에 대해 알아보았습니다.
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
Reference
이 문제에 관하여(CSS animation에서 수박이 귀엽게 흔들리는 녀석에 대해 알아보았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/htomine/items/03fe6e5dbe0f8f58cd1c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)