반응형
<!DOCTYPE html>
<html lang="en">
<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>Transformations</title>
<style>
.box{
width: 100px;
height: 100px;
background: red;
/*animation: 1회동작시간 함수명 동작시간(안적어주면 1회) ease-in-out;*/
animation: 1.5s scaleAndRotateSquare infinite ease-in-out;
}
/*@keyframes 애니메이션을 사용할 거라는 말. @keyframes 함수명{}
2가지 버전이 있는데 from to 를 사용해도 되고 0% 50% 100% 를 사용하여도 됩니다.*/
/*@keyframes scaleAndRotateSquare {
from{
}
to{
}
}*/
@keyframes scaleAndRotateSquare {
0%{
transform:none;
}
50%{
transform: rotate(1turn) scale(.5, .5);
color:white;
}
100%{
transform: none;
color:blue;
}
}
</style>
</head>
<body>
<div class="box">11</div>
</body>
</html>
출처: nomad coder
반응형
'2020 > CSS' 카테고리의 다른 글
페이지에서 색상 변경 가능, 사이즈 확인 site (0) | 2020.02.17 |
---|---|
css media queries (0) | 2020.02.16 |
CSS Transformations (0) | 2020.02.16 |
CSS Transition (0) | 2020.02.16 |
css states(hover, active, focus, visited) (0) | 2020.02.16 |