반응형
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>animations</title>
<style>
.box {
height: 200px;
width: 200px;
background-color: red;
animation: .5s rotateScale infinite ease-in-out;
}
/* 애니메이션의 중간 상태를 지정 */
@keyframes rotateScale {
/* from-to 또는 % 작성 가능 */
/* from{
transform: none;
}
to{
transform: rotate(1turn) scale(.5, .5);
} */
0%{
transform: none;
}
50%{
transform: rotate(1turn) scale(.5, .5);
}
100% {
transform: none;
background-color: yellow;
}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
참고사이트▼
노마드 코더 - Nomad Coders
'CSS' 카테고리의 다른 글
Clearfix Hack과 flow-root (0) | 2019.01.29 |
---|---|
Font Awesome (버전 4와 버전 5 사용 방법) (0) | 2019.01.04 |
media query (0) | 2019.01.03 |
pseudo-class (0) | 2019.01.03 |
flexbox(Flexible Box module) (0) | 2018.12.29 |
댓글